diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
commit | fde43024bd6579b609526faf94dcdbcb6f2bc5e1 (patch) | |
tree | 1d4accd9602108b3cc2693d6c0093469274cc332 /src/LYCookie.c | |
parent | 9c512bbadc47a7de000f53f11a7620d83ca0ddba (diff) | |
download | lynx-snapshots-fde43024bd6579b609526faf94dcdbcb6f2bc5e1.tar.gz |
snapshot of project "lynx", label v2-8-3dev_6
Diffstat (limited to 'src/LYCookie.c')
-rw-r--r-- | src/LYCookie.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LYCookie.c b/src/LYCookie.c index ea5bd4d3..d1717004 100644 --- a/src/LYCookie.c +++ b/src/LYCookie.c @@ -611,8 +611,8 @@ PRIVATE void store_cookie ARGS3( ** include in a Cookie: request header. - AK & FM */ PRIVATE char * scan_cookie_sublist ARGS6( - CONST char *, hostname, - CONST char *, path, + char *, hostname, + char *, path, int, port, HTList *, sublist, char *, header, @@ -630,7 +630,7 @@ PRIVATE char * scan_cookie_sublist ARGS6( next = hl->next; if ((co) && /* speed-up host_matches() and limit trace output */ - (LYstrstr((char *)hostname, co->domain) != NULL)) + (LYstrstr(hostname, co->domain) != NULL)) { CTRACE(tfp, "Checking cookie %p %s=%s\n", hl, @@ -1952,8 +1952,8 @@ PUBLIC void LYSetCookie ARGS3( ** if needed. - AK & FM */ PUBLIC char * LYCookie ARGS4( - CONST char *, hostname, - CONST char *, path, + char *, hostname, + char *, path, int, port, BOOL, secure) { |