From 4031104404c6ceed5e57134125dcdb6cac51c564 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 5 Jan 2001 10:11:41 +0000 Subject: Internal symbols that aren't static are now prefixed with 'Curl_' --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index f7c1a31a8..0b050c9c5 100644 --- a/src/main.c +++ b/src/main.c @@ -690,7 +690,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ /* we already have a string, we append this one with a separating &-letter */ char *oldpost=config->postfields; - config->postfields=maprintf("%s&%s", oldpost, postdata); + config->postfields=aprintf("%s&%s", oldpost, postdata); free(oldpost); free(postdata); } -- cgit v1.2.3