]> Pileus Git - ~andy/fetchmail/blobdiff - transact.c
Fix a few Intel C++ remarks and warnings.
[~andy/fetchmail] / transact.c
index 364a85a073704b0a78270fc06edab496b1752113..b01c2f376ee8c598d5f71e6b115069812e3679fd 100644 (file)
@@ -749,17 +749,17 @@ eoh:
         * turns on the dropstatus flag.
         */
        {
-           char        *cp;
+           char        *tcp;
 
            if (!strncasecmp(line, "Status:", 7))
-               cp = line + 7;
+               tcp = line + 7;
            else if (!strncasecmp(line, "X-Mozilla-Status:", 17))
-               cp = line + 17;
+               tcp = line + 17;
            else
-               cp = NULL;
-           if (cp) {
-               while (*cp && isspace((unsigned char)*cp)) cp++;
-               if (!*cp || ctl->dropstatus)
+               tcp = NULL;
+           if (tcp) {
+               while (*tcp && isspace((unsigned char)*tcp)) tcp++;
+               if (!*tcp || ctl->dropstatus)
                {
                    free(line);
                    continue;