From 8b6218e0f1486a39a53783e7c86b42285f89e4cf Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 27 Apr 2010 09:50:55 +0200 Subject: Fix a few Intel C++ remarks and warnings. --- transact.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'transact.c') diff --git a/transact.c b/transact.c index 364a85a0..b01c2f37 100644 --- a/transact.c +++ b/transact.c @@ -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; -- cgit v1.2.3