diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-16 15:20:12 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-16 15:20:12 +0000 |
commit | c5f404bd28d49cc3f5f2545b01387c3de0cb41a9 (patch) | |
tree | 372f244e7daf56f402634324cc43af2d25566366 | |
parent | 35d2c9a1261a0877aa85d1b35e8e05735c7218a4 (diff) | |
download | fetchmail-c5f404bd28d49cc3f5f2545b01387c3de0cb41a9.tar.gz fetchmail-c5f404bd28d49cc3f5f2545b01387c3de0cb41a9.tar.bz2 fetchmail-c5f404bd28d49cc3f5f2545b01387c3de0cb41a9.zip |
Avoid a warning message.
svn path=/trunk/; revision=1346
-rw-r--r-- | rcfile_y.y | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -292,10 +292,8 @@ const char *pathname; /* pathname for the configuration file */ return(0); } -int prc_parse_file (pathname, securecheck) +int prc_parse_file (const char *pathname, const flag securecheck) /* digest the configuration into a linked list of host records */ -const char *pathname; /* pathname for the configuration file */ -const flag securecheck; /* check for a secure rc file? */ { prc_errflag = 0; querylist = hosttail = (struct query *)NULL; |