diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2011-06-17 18:06:29 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2011-06-17 18:06:29 +0200 |
commit | cd43b2e270793cac361aa7d64171db06a1dbee26 (patch) | |
tree | 7e05f275f307db0014442ad808cd02576d09c279 | |
parent | 284f73ad6dea66b7f553f19b1ca3db62831b3ad4 (diff) | |
download | fetchmail-cd43b2e270793cac361aa7d64171db06a1dbee26.tar.gz fetchmail-cd43b2e270793cac361aa7d64171db06a1dbee26.tar.bz2 fetchmail-cd43b2e270793cac361aa7d64171db06a1dbee26.zip |
Fix function signature to match prototype.
Found by Lars Hecking.
-rw-r--r-- | kerberos.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ typedef long int32; #error Cannot deduce a 32-bit-type #endif -int do_rfc1731(int sock, char *command, char *truename) +int do_rfc1731(int sock, const char *command, const char *truename) /* authenticate as per RFC1731 -- note 32-bit integer requirement here */ { int result = 0, len; |