From 2ce75a37bcca6a5c960c1fb56b530c24de5a8492 Mon Sep 17 00:00:00 2001 From: hiro Date: Fri, 10 Jun 2005 09:28:05 +0000 Subject: fixed Turkish locale problem. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@333 ee746299-78ed-0310-b773-934348b2243d --- src/smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/smtp.c') diff --git a/src/smtp.c b/src/smtp.c index 57a3abbf..25a0f71a 100644 --- a/src/smtp.c +++ b/src/smtp.c @@ -271,7 +271,7 @@ static gint smtp_ehlo_recv(SMTPSession *session, const gchar *msg) const gchar *p = msg; p += 3; if (*p == '-' || *p == ' ') p++; - if (g_strncasecmp(p, "AUTH", 4) == 0 && p[4] != '\0') { + if (g_ascii_strncasecmp(p, "AUTH", 4) == 0 && p[4] != '\0') { p += 5; if (strcasestr(p, "PLAIN")) session->avail_auth_type |= SMTPAUTH_PLAIN; -- cgit v1.2.3