1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Remove unused pointer from struct cookie.

This commit is contained in:
hniksic 2003-10-07 03:39:18 -07:00
parent df4064bc68
commit 3d823e690e
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-10-07 Hrvoje Niksic <hniksic@xemacs.org>
* cookies.c (struct cookie): Remove unused backpointer to cookie
jar.
2003-10-07 Hrvoje Niksic <hniksic@xemacs.org>
* cmpt.c (memmove): Comment out, since it's no longer used.

View File

@ -118,8 +118,6 @@ struct cookie {
char *attr; /* cookie attribute name */
char *value; /* cookie attribute value */
struct cookie_jar *jar; /* pointer back to the cookie jar, for
convenience. */
struct cookie *next; /* used for chaining of cookies in the
same domain. */
};