aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-08-02 00:33:48 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-08-02 00:33:48 +0000
commitb67217bcf270ed541bbf756a2331e8437bb7824b (patch)
tree294513739cbc1860e0ec8da0fad366b87832e0c7 /smtp.c
parent9042eba522e8c99da720ad31c0aafc7c03374e26 (diff)
downloadfetchmail-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtp.c b/smtp.c
index b21192c4..083410be 100644
--- a/smtp.c
+++ b/smtp.c
@@ -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);