]> granicus.if.org Git - neomutt/commitdiff
q is never used
authorErik Hovland <erik@hovland.org>
Sun, 5 Apr 2009 11:16:47 +0000 (13:16 +0200)
committerErik Hovland <erik@hovland.org>
Sun, 5 Apr 2009 11:16:47 +0000 (13:16 +0200)
sendlib.c

index bac0c0c09ea2b928051bf556cf2fbc8887181716..f7d879240ce207626e9d1ceeef1a1c71585b97cc 100644 (file)
--- 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;
     }
   }