From: Erik Hovland Date: Sun, 5 Apr 2009 11:16:47 +0000 (+0200) Subject: q is never used X-Git-Tag: neomutt-20160307~702 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf0af10d09a426928ef40ffe6a5c5fc3a40a1009;p=neomutt q is never used --- diff --git a/sendlib.c b/sendlib.c index bac0c0c09..f7d879240 100644 --- a/sendlib.c +++ b/sendlib.c @@ -1909,7 +1909,7 @@ static void encode_headers (LIST *h) const char *mutt_fqdn(short may_hide_host) { - char *p = NULL, *q; + char *p = NULL; if(Fqdn && Fqdn[0] != '@') { @@ -1924,7 +1924,7 @@ const char *mutt_fqdn(short may_hide_host) * the fqdn is something like detebe.org. */ - if(!p || !(q = strchr(p, '.'))) + if(!p || !strchr(p, '.')) p = Fqdn; } }