diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 00:33:48 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 00:33:48 +0000 |
commit | b67217bcf270ed541bbf756a2331e8437bb7824b (patch) | |
tree | 294513739cbc1860e0ec8da0fad366b87832e0c7 /smtp.c | |
parent | 9042eba522e8c99da720ad31c0aafc7c03374e26 (diff) | |
download | fetchmail-b67217bcf270ed541bbf756a2331e8437bb7824b.tar.gz fetchmail-b67217bcf270ed541bbf756a2331e8437bb7824b.tar.bz2 fetchmail-b67217bcf270ed541bbf756a2331e8437bb7824b.zip |
Fix prototype, to avoid compiler warnings with --disable-nls.
svn path=/trunk/; revision=4217
Diffstat (limited to 'smtp.c')
-rw-r--r-- | smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ int SMTP_helo(int sock,const char *host) return ok; } -static void SMTP_auth_error(int sock, char *msg) +static void SMTP_auth_error(int sock, const char *msg) { SockPrintf(sock, "*\r\n"); SockRead(sock, smtp_response, sizeof(smtp_response) - 1); |