diff options
-rw-r--r-- | src/common/ssl.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/ssl.c b/src/common/ssl.c index 1ef28cfd..cfa9b6cf 100644 --- a/src/common/ssl.c +++ b/src/common/ssl.c @@ -33,11 +33,9 @@ #include <string.h> /* strncpy() */ #include "ssl.h" /* struct cert_info */ -#ifndef HAVE_SNPRINTF #include <glib.h> #include <glib/gprintf.h> -#define snprintf g_snprintf -#endif +#include "util.h" /* globals */ static struct chiper_info chiper_info; /* static buffer for _SSL_get_cipher_info() */ @@ -55,7 +53,7 @@ __SSL_fill_err_buf (char *funcname) err = ERR_get_error (); ERR_error_string (err, buf); - snprintf (err_buf, sizeof (err_buf), "%s: %s (%d)\n", funcname, buf, err); + g_snprintf (err_buf, sizeof (err_buf), "%s: %s (%d)\n", funcname, buf, err); } |