aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-05 12:19:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-05 12:19:42 +0000
commit6403257886fffe9d320099dfa019620c6c1f8dee (patch)
tree1dac8d1649fd80636db7b37881c244656735ecbc /lib/http.c
parent4031104404c6ceed5e57134125dcdb6cac51c564 (diff)
renamed Curl_ to curl_ for the printf() prefixes
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 555845abb..aa96ed0af 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -161,7 +161,7 @@ CURLcode add_bufferf(send_buffer *in, char *fmt, ...)
char *s;
va_list ap;
va_start(ap, fmt);
- s = Curl_mvaprintf(fmt, ap); /* this allocs a new string to append */
+ s = vaprintf(fmt, ap); /* this allocs a new string to append */
va_end(ap);
if(s) {