aboutsummaryrefslogtreecommitdiffstats
path: root/transact.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-10-20 09:14:04 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-10-20 09:14:04 +0000
commit334cb452bfee4d0511f9591292903d01f58efaf9 (patch)
tree21d7baddc9b7fde16dfa1c315693623649144083 /transact.c
parent65f9c5e8d026830b0fbd2583007c507e5e6e2b78 (diff)
downloadfetchmail-334cb452bfee4d0511f9591292903d01f58efaf9.tar.gz
fetchmail-334cb452bfee4d0511f9591292903d01f58efaf9.tar.bz2
fetchmail-334cb452bfee4d0511f9591292903d01f58efaf9.zip
Fix miscellaneous warnings.
svn path=/trunk/; revision=3953
Diffstat (limited to 'transact.c')
-rw-r--r--transact.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/transact.c b/transact.c
index 0c246a1d..901e3d3d 100644
--- a/transact.c
+++ b/transact.c
@@ -35,10 +35,6 @@
#include "socket.h"
#include "fetchmail.h"
-#ifndef strstr /* glibc-2.1 declares this as a macro */
-extern char *strstr(const char *, const char *); /* needed on sysV68 R3V7.1. */
-#endif /* strstr */
-
int mytimeout; /* value of nonreponse timeout */
int suppress_tags; /* emit tags? */
char shroud[PASSWORDLEN*2+3]; /* string to shroud in debug output */
@@ -422,7 +418,7 @@ int readheaders(int sock,
for (remaining = fetchlen; remaining > 0 || protocol->delimited; )
{
char *line, *rline;
- int overlong = FALSE;
+ int overlong = FALSE; /* XXX FIXME: this is unused */
line = xmalloc(sizeof(buf));
linelen = 0;