Commit a6c128be a6c128be79cce933ca3e2ace2c4b86a87552a71b by Sergey Poznyakoff

Changed ENOTSUP to ENOSYS

1 parent 21f1f959
......@@ -324,7 +324,7 @@ folder_imap_open (folder_t folder, int flags)
{
/* No other type of Authentication is supported yet. */
/* What can we do ? flag an error ? */
CHECK_ERROR_CLOSE (folder, f_imap, ENOTSUP);
CHECK_ERROR_CLOSE (folder, f_imap, ENOSYS);
}
}
f_imap->state = IMAP_AUTH;
......