aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-18 15:28:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-18 15:28:56 +0000
commit9efddfedab01828439e400933e7dfb5483df628e (patch)
tree908d6648cf5584d8a7e5ce1da579dbbe8896c2e6
parent4b11e19f266e416ab81f31d4b49dea3d8a2e63f9 (diff)
removed some "jhrg" from comments
-rw-r--r--lib/transfer.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index cdac4697d..e2e044938 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -87,8 +87,7 @@
#include <curl/types.h>
#include "netrc.h"
-#include "content_encoding.h" /* content encoding support. 08/27/02 jhrg */
-
+#include "content_encoding.h"
#include "hostip.h"
#include "transfer.h"
#include "sendf.h"
@@ -718,7 +717,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
*start && isspace((int)*start);
start++);
- /* Record the content-encoding for later use. 08/27/02 jhrg */
+ /* Record the content-encoding for later use */
if (checkprefix("identity", start))
k->content_encoding = IDENTITY;
else if (checkprefix("deflate", start))
@@ -1272,7 +1271,7 @@ CURLcode Curl_readwrite_init(struct connectdata *conn)
struct Curl_transfer_keeper *k = &conn->keep;
/* NB: the content encoding software depends on this initialization of
- Curl_transfer_keeper. 08/28/02 jhrg */
+ Curl_transfer_keeper. */
memset(k, 0, sizeof(struct Curl_transfer_keeper));
k->start = Curl_tvnow(); /* start time */