exit strfcpy, only use m_strcpy.
[apps/madmutt.git] / imap / command.c
index 915e3f1..15aa019 100644 (file)
@@ -569,7 +569,7 @@ static void cmd_parse_lsub (IMAP_DATA* idata, char* s) {
     imap_unmunge_mbox_name (s);
     debug_print (2, ("Subscribing to %s\n", s));
 
-    strfcpy (buf, "mailboxes \"", sizeof (buf));
+    m_strcpy(buf, sizeof(buf), "mailboxes \"");
     mutt_account_tourl (&idata->conn->account, &url);
     url.path = s;
     if (!m_strcmp(url.user, ImapUser))