From fb90b43432afcd23b2b519264d38a38e17a3ee57 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 23 Feb 2009 01:04:18 +0000 Subject: use the internal snprintf() function --- lib/socks_sspi.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/socks_sspi.c b/lib/socks_sspi.c index f8e7e94c5..9798e8944 100644 --- a/lib/socks_sspi.c +++ b/lib/socks_sspi.c @@ -42,6 +42,9 @@ #include "socks.h" #include "curl_sspi.h" +#define _MPRINTF_REPLACE /* use the internal *printf() functions */ +#include + /* The last #include file should be: */ #include "memdebug.h" @@ -207,8 +210,8 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex, service_name = malloc(strlen(service) + strlen(conn->proxy.name) + 2); if(!service_name) return CURLE_OUT_OF_MEMORY; - _snprintf(service_name,strlen(service) +strlen(conn->proxy.name)+2,"%s/%s", - service,conn->proxy.name); + snprintf(service_name,strlen(service) +strlen(conn->proxy.name)+2,"%s/%s", + service,conn->proxy.name); } input_desc.cBuffers = 1; -- cgit v1.2.3