]> git.notmuchmail.org Git - notmuch/commitdiff
Rename already used counter var i
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Tue, 27 Apr 2010 12:57:25 +0000 (14:57 +0200)
committerCarl Worth <cworth@cworth.org>
Tue, 27 Apr 2010 15:09:38 +0000 (08:09 -0700)
i is already used in a for loop at this point, so using i here again
broke notmuch-reply (it would just hang). Use j instead of i here.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
notmuch-reply.c

index 333e945f09d01abfe225bc589190dd8496506314..fd1de3b957389b3cf39c04727a7d2595646143bb 100644 (file)
@@ -317,7 +317,7 @@ guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message
     char *domain=NULL;
     char *tld=NULL;
     const char *delim=". \t";
-    size_t i,other_len;
+    size_t i,j,other_len;
 
     const char *to_headers[] = {"Envelope-to", "X-Original-To"};
 
@@ -348,10 +348,10 @@ guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message
                free(tohdr);
                return primary;
            }
-           for (i = 0; i < other_len; i++)
-               if (strcasestr (tohdr, other[i])) {
+           for (j = 0; j < other_len; j++)
+               if (strcasestr (tohdr, other[j])) {
                    free(tohdr);
-                   return other[i];
+                   return other[j];
                }
            free(tohdr);
        }