diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2011-05-11 13:47:44 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2011-05-11 13:47:44 +0200 |
commit | 09d71d6dc7721dbc9c802405407ee9701d306993 (patch) | |
tree | 931c9a4f838be9e5eef8a5a7951231cf86b86d22 | |
parent | 1cf7053cbc3e3fbacb9770f3532d69192102a842 (diff) | |
download | fetchmail-09d71d6dc7721dbc9c802405407ee9701d306993.tar.gz fetchmail-09d71d6dc7721dbc9c802405407ee9701d306993.tar.bz2 fetchmail-09d71d6dc7721dbc9c802405407ee9701d306993.zip |
Correct call arguments to gen_transact().
-rw-r--r-- | kerberos.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -249,7 +249,7 @@ int do_rfc1731(int sock, char *command, char *truename) /* ship down the response, accept the server's error/ok indication */ suppress_tags = TRUE; - result = gen_transact(sock, buf1, strlen(buf1)); + result = gen_transact(sock, "%s", buf1); suppress_tags = FALSE; if (result) return(result); |