From 4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b Mon Sep 17 00:00:00 2001 From: David Levine Date: Thu, 16 Feb 2012 22:56:02 -0600 Subject: [PATCH] Added a couple of NMH_UNUSED's to suppress warnings when building without Cyrus SASL. --- uip/popsbr.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/uip/popsbr.c b/uip/popsbr.c index fcdbd75..feb7aa0 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]; -- 1.7.10.4