diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 17:06:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 17:06:51 +0000 |
commit | 133a1630f9b76ea28ef59595c45f681aeb34319a (patch) | |
tree | 4d38acdcbb944670667ea8e526e95c3ae174c484 /rfc822.c | |
parent | 319e585aca5112d97b56b38ece4a552747043bba (diff) | |
download | fetchmail-133a1630f9b76ea28ef59595c45f681aeb34319a.tar.gz fetchmail-133a1630f9b76ea28ef59595c45f681aeb34319a.tar.bz2 fetchmail-133a1630f9b76ea28ef59595c45f681aeb34319a.zip |
Move an initialization to be more perspicuous.
svn path=/trunk/; revision=920
Diffstat (limited to 'rfc822.c')
-rw-r--r-- | rfc822.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -138,6 +138,7 @@ const char *hdr; /* header to be parsed, NUL to continue previous hdr */ #ifdef TESTMAIN orighdr = hdr; #endif /* TESTMAIN */ + tp = address; } for (; *hp; hp++) @@ -172,10 +173,7 @@ const char *hdr; /* header to be parsed, NUL to continue previous hdr */ { case START_HDR: /* before header colon */ if (*hp == ':') - { state = SKIP_JUNK; - tp = address; - } break; case SKIP_JUNK: /* looking for address start */ |