Commit 6e19aa1e 6e19aa1e54e0fc5c3efa141677091b2326143933 by Sergey Poznyakoff

Use ENOSYS instead of ENOTSUP

1 parent d4c9a959
...@@ -318,7 +318,7 @@ _mailbox_pop_init (mailbox_t mbox) ...@@ -318,7 +318,7 @@ _mailbox_pop_init (mailbox_t mbox)
318 else 318 else
319 { 319 {
320 authority_destroy (&mbox->authority, mbox); 320 authority_destroy (&mbox->authority, mbox);
321 return ENOTSUP; 321 return ENOSYS;
322 } 322 }
323 323
324 /* Allocate specifics for pop data. */ 324 /* Allocate specifics for pop data. */
......