Commit a79c11a4 a79c11a4d374a76a4fcdec58a77234638465e9d0 by Sergey Poznyakoff

Use ENOSYS instead of ENOTSUP.

1 parent 1c3f803f
......@@ -187,7 +187,7 @@ _mailbox_imap_init (mailbox_t mailbox)
else
{
/* Not a supported authentication mechanism. */
return ENOTSUP;
return ENOSYS;
}
}
......