use m_strdup and m_strlen that are inlined for efficiency
[apps/madmutt.git] / imap / auth.c
index 2e6b8ca..47f305f 100644 (file)
@@ -55,7 +55,7 @@ int imap_authenticate (IMAP_DATA * idata)
 
   if (ImapAuthenticators && *ImapAuthenticators) {
     /* Try user-specified list of authentication methods */
-    methods = str_dup (ImapAuthenticators);
+    methods = m_strdup(ImapAuthenticators);
 
     for (method = methods; method; method = delim) {
       delim = strchr (method, ':');