aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-12-05 21:40:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-12-05 21:40:14 +0000
commit5fd096da8d5667384c40280e408227919afda6dc (patch)
tree0688ac05294b482324ecb66fcd858fa0425c5e2d /lib/sendf.c
parenteb29c5c2851ffde4f72a3f3d75942796fee60c32 (diff)
Stefan Krause pointed out a compiler warning with a picky MSCV compiler when
passing a curl_off_t argument to the Curl_read_rewind() function which takes an size_t argument. Curl_read_rewind() also had debug code left in it and it was put in a different source file with no good reason when only used from one single spot.
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index ddd8b9b5c..7d203879f 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -455,24 +455,6 @@ CURLcode Curl_client_write(struct connectdata *conn,
#define MIN(a,b) (a < b ? a : b)
-void Curl_read_rewind(struct connectdata *conn,
- size_t extraBytesRead)
-{
- char buf[512 + 1];
- size_t bytesToShow;
-
- conn->read_pos -= extraBytesRead;
- conn->bits.stream_was_rewound = TRUE;
-
- bytesToShow = MIN(conn->buf_len - conn->read_pos, sizeof(buf)-1);
- memcpy(buf, conn->master_buffer + conn->read_pos, bytesToShow);
- buf[bytesToShow] = '\0';
-
- DEBUGF(infof(conn->data,
- "Buffer after stream rewind (read_pos = %d): [%s]",
- conn->read_pos, buf));
-}
-
/*
* Internal read-from-socket function. This is meant to deal with plain
* sockets, SSL sockets and kerberos sockets.