Commit a79c11a4 a79c11a4d374a76a4fcdec58a77234638465e9d0 by Sergey Poznyakoff

Use ENOSYS instead of ENOTSUP.

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