aboutsummaryrefslogtreecommitdiffstats
path: root/transact.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-04-27 09:50:55 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-04-27 09:50:55 +0200
commit8b6218e0f1486a39a53783e7c86b42285f89e4cf (patch)
tree46d0a5aef12c8b13f5de3eb1b32027f463190dd9 /transact.c
parent2148260d742663448a8fd7ff950d3d8e7468ccd5 (diff)
downloadfetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.gz
fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.bz2
fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.zip
Fix a few Intel C++ remarks and warnings.
Diffstat (limited to 'transact.c')
-rw-r--r--transact.c14
1 files changed, 7 insertions, 7 deletions
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;