From da4e8725cdfeb62527f9b900f3a21afc88e89e3a Mon Sep 17 00:00:00 2001 From: David Levine Date: Wed, 24 Apr 2019 18:46:51 -0400 Subject: [PATCH 1/1] Removed redundant initialization of local variable tls. Fix to commit ec173fd2c. gcc noticed that it, in effect, it was declared as an int but initialized the second time with a bool value. --- uip/inc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/inc.c b/uip/inc.c index dc49337d..e40b7306 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -253,7 +253,7 @@ main (int argc, char **argv) if (pophost && *pophost) host = pophost; - sasl = tls = false; + sasl = false; chgflag = noisy = noverify = true; while ((cp = *argp++)) { if (*cp == '-') { -- 2.48.1