From: jongfoster <jongfoster@users.sourceforge.net>
Date: Fri, 23 Nov 2001 00:26:38 +0000 (+0000)
Subject: Fixing two really stupid errors in my previous commit
X-Git-Tag: v_2_9_10~13
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/faq/@default-cgi@/@default-cgi@show-url-info?a=commitdiff_plain;h=a7149d9ab66d285f9e30dcc867c5976c794b995a;p=privoxy.git
Fixing two really stupid errors in my previous commit
---
diff --git a/parsers.c b/parsers.c
index a2c6a960..6bf55ea0 100644
--- a/parsers.c
+++ b/parsers.c
@@ -1,4 +1,4 @@
-const char parsers_rcs[] = "$Id: parsers.c,v 1.41 2001/11/05 23:43:05 steudten Exp $";
+const char parsers_rcs[] = "$Id: parsers.c,v 1.42 2001/11/22 21:59:30 jongfoster Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/parsers.c,v $
@@ -41,6 +41,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.41 2001/11/05 23:43:05 steudten E
*
* Revisions :
* $Log: parsers.c,v $
+ * Revision 1.42 2001/11/22 21:59:30 jongfoster
+ * Adding code to handle +no-cookies-keep
+ *
* Revision 1.41 2001/11/05 23:43:05 steudten
* Add time+date to log files.
*
@@ -1726,7 +1729,7 @@ char *server_set_cookie(const struct parsers *v, const char *s, struct client_st
* since the behaviour of strcpy is undefined for overlapping
* strings.)
*/
- memmove(cur_tag, next_tag, strlen(next_tag));
+ memmove(cur_tag, next_tag, strlen(next_tag) + 1);
/* That changed the header, need to issue a log message */
changed = 1;
@@ -1742,7 +1745,10 @@ char *server_set_cookie(const struct parsers *v, const char *s, struct client_st
}
}
- log_error(LOG_LEVEL_HEADER, "Changed cookie to a temporary one.");
+ if (changed)
+ {
+ log_error(LOG_LEVEL_HEADER, "Changed cookie to a temporary one.");
+ }
return result;
}