]> sjero.net Git - wget/commitdiff
[svn] Remove unused pointer from struct cookie.
authorhniksic <devnull@localhost>
Tue, 7 Oct 2003 10:39:18 +0000 (03:39 -0700)
committerhniksic <devnull@localhost>
Tue, 7 Oct 2003 10:39:18 +0000 (03:39 -0700)
src/ChangeLog
src/cookies.c

index c7b9642a24c13f01e983fe7f1eaa3de0f07f86ee..6b42affb56ab910d476b7a7f9eade6291c2ff36e 100644 (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.
index 091c1f53a4d4d37836ea9c2e17d323658b517fd3..6d46123a20046f021d7ced507216391bff61a518 100644 (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. */
 };