From: David Levine Date: Fri, 17 Feb 2012 04:56:02 +0000 (-0600) Subject: Added a couple of NMH_UNUSED's to suppress warnings when building without Cyrus SASL. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b?hp=d28ce569fe233141f86fe516878361da01c9f9cb Added a couple of NMH_UNUSED's to suppress warnings when building without Cyrus SASL. --- diff --git a/uip/popsbr.c b/uip/popsbr.c index fcdbd75e..feb7aa0d 100644 --- a/uip/popsbr.c +++ b/uip/popsbr.c @@ -418,6 +418,11 @@ int pop_init (char *host, char *port, char *user, char *pass, char *proxy, int snoop, int sasl, char *mech) { +#ifndef CYRUS_SASL + NMH_UNUSED (sasl); + NMH_UNUSED (mech); +#endif /* ! CYRUS_SASL */ + int fd1, fd2; char buffer[BUFSIZ];