renamed Curl_ to curl_ for the printf() prefixes

This commit is contained in:
Daniel Stenberg 2001-01-05 12:19:42 +00:00
parent 4031104404
commit 6403257886
3 changed files with 34 additions and 34 deletions

View file

@ -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) {