diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-02 10:42:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-02 10:42:05 +0000 |
commit | 4b3edae219d7cb367e847cd512f2d9a70000c1fd (patch) | |
tree | d6021c4a65ebc60957215136e5a2080358bd9295 /driver.c | |
parent | 34fcdc401a9da859628d5aa8b338f6e3bbd6fc27 (diff) | |
download | fetchmail-4b3edae219d7cb367e847cd512f2d9a70000c1fd.tar.gz fetchmail-4b3edae219d7cb367e847cd512f2d9a70000c1fd.tar.bz2 fetchmail-4b3edae219d7cb367e847cd512f2d9a70000c1fd.zip |
Ooops...
svn path=/trunk/; revision=1467
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1123,7 +1123,7 @@ int num; /* index of message */ * synthetic Received line is before the From header. Cope * with this... */ - if ((rcv = strstr("Received:", headers)) == (char *)NULL) + if ((rcv = strstr(headers, "Received:")) == (char *)NULL) rcv = headers; if (rcv > headers) { |