From: David Levine Date: Wed, 24 Apr 2019 22:46:51 +0000 (-0400) Subject: Removed redundant initialization of local variable tls. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/da4e8725cdfeb62527f9b900f3a21afc88e89e3a?hp=ef0725fd97369e801a56febfdb7a6ec2eaff73c8 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. --- 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 == '-') {