diff --git a/src/ChangeLog b/src/ChangeLog index c7b9642a..6b42affb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-10-07 Hrvoje Niksic + + * cookies.c (struct cookie): Remove unused backpointer to cookie + jar. + 2003-10-07 Hrvoje Niksic * cmpt.c (memmove): Comment out, since it's no longer used. diff --git a/src/cookies.c b/src/cookies.c index 091c1f53..6d46123a 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -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. */ };