aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-09-30 20:31:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-09-30 20:31:11 +0000
commit5e0d9aea322ba3abfc05c937f91b5751768f2310 (patch)
tree0ade80f30096f37fcbc76176a5b82d86c9131f74 /lib/sendf.c
parentae13c93b7db9f9c68eaf95150ed551b3b649d8c4 (diff)
Support for FTP third party transfers is now dropped
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index 7988d767d..16fa9b0b2 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -590,9 +590,7 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
}
if(t) {
- snprintf(buffer, sizeof(buffer), "[%s %s %s%s]", w, t,
- conn->xfertype==NORMAL?"":
- (conn->xfertype==SOURCE3RD?"source ":"target "),
+ snprintf(buffer, sizeof(buffer), "[%s %s %s]", w, t,
conn->host.dispname);
rc = showit(data, CURLINFO_TEXT, buffer, strlen(buffer));
if(rc)