X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/c05210483d82bf5f3786725ff80e12444088a701..25b5d3aa852eb145beea1d3abcbe57e75f2e59a7:/uip/popsbr.c diff --git a/uip/popsbr.c b/uip/popsbr.c old mode 100644 new mode 100755 index 2d03efdc..fb66a93b --- a/uip/popsbr.c +++ b/uip/popsbr.c @@ -12,6 +12,13 @@ #ifdef CYRUS_SASL # include # include +# if SASL_VERSION_FULL < 0x020125 + /* Cyrus SASL 2.1.25 introduced the sasl_callback_ft prototype, + which has an explicit void parameter list, according to best + practice. So we need to cast to avoid compile warnings. + Provide this prototype for earlier versions. */ + typedef int (*sasl_callback_ft)(); +# endif /* SASL_VERSION_FULL < 0x020125 */ #endif /* CYRUS_SASL */ #include @@ -43,9 +50,9 @@ struct pass_context { }; static sasl_callback_t callbacks[] = { - { SASL_CB_USER, sasl_get_user, NULL }, + { SASL_CB_USER, (sasl_callback_ft) sasl_get_user, NULL }, #define POP_SASL_CB_N_USER 0 - { SASL_CB_PASS, sasl_get_pass, NULL }, + { SASL_CB_PASS, (sasl_callback_ft) sasl_get_pass, NULL }, #define POP_SASL_CB_N_PASS 1 { SASL_CB_LOG, NULL, NULL }, { SASL_CB_LIST_END, NULL, NULL }, @@ -347,6 +354,8 @@ sasl_get_pass(sasl_conn_t *conn, void *context, int id, sasl_secret_t **psecret) char *pass = NULL; int len; + NMH_UNUSED (conn); + if (! psecret || id != SASL_CB_PASS) return SASL_BADPARAM; @@ -418,6 +427,10 @@ pop_init (char *host, char *port, char *user, char *pass, char *proxy, { int fd1, fd2; char buffer[BUFSIZ]; +#ifndef CYRUS_SASL + NMH_UNUSED (sasl); + NMH_UNUSED (mech); +#endif /* ! CYRUS_SASL */ if (proxy && *proxy) { int pid; @@ -893,7 +906,7 @@ static int sasl_fgetc(FILE *f) { static unsigned char *buffer = NULL, *ptr; - static int size = 0; + static unsigned int size = 0; static int cnt = 0; unsigned int retbufsize = 0; int cc, result;