diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-02-18 22:27:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-02-18 22:27:01 +0000 |
commit | 10beb36b1cd1479d14b245a922e1ab49d9a8b1f9 (patch) | |
tree | c427faf56fa49f03a3b12108d73389eb536f16b2 /lib/http_negotiate.c | |
parent | a65a888866aecb4651cc6f7ed7c80fe1008f7199 (diff) |
Ulf Härnhammar fixed a format string (printf style) problem in the Negotiate
code. It should however not be the cause of any troubles. He also fixed a
few similar problems in the HTTP test server code.
Diffstat (limited to 'lib/http_negotiate.c')
-rw-r--r-- | lib/http_negotiate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c index f859a8bee..f407d5090 100644 --- a/lib/http_negotiate.c +++ b/lib/http_negotiate.c @@ -111,7 +111,7 @@ log_gss_error(struct connectdata *conn, OM_uint32 error_status, char *prefix) gss_release_buffer(&min_stat, &status_string); } while (!GSS_ERROR(maj_stat) && msg_ctx != 0); - infof(conn->data, buf); + infof(conn->data, "%s", buf); } int Curl_input_negotiate(struct connectdata *conn, char *header) |