aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-07-03 02:54:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-07-03 02:54:50 +0000
commit9aafb07f141bbd1cae1395e34fe3d064918c6712 (patch)
treeab8d0347fc4486ad4d84cd48182f56f7ac3f7a08 /fetchmail.h
parent1a9213a862e2b7c2b3e918d7700a82f014004b08 (diff)
downloadfetchmail-9aafb07f141bbd1cae1395e34fe3d064918c6712.tar.gz
fetchmail-9aafb07f141bbd1cae1395e34fe3d064918c6712.tar.bz2
fetchmail-9aafb07f141bbd1cae1395e34fe3d064918c6712.zip
poprcfile is now a single global.
svn path=/trunk/; revision=26
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 0a97272c..1f8028f2 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -55,7 +55,6 @@ struct optrec {
int fetchall;
int flush;
int output;
- char *poprcfile;
char localname [USERNAMELEN];
char remotename [USERNAMELEN];
char password [PASSWORDLEN];
@@ -92,7 +91,7 @@ extern int poll_interval; /* poll interval in seconds */
extern char *logfile; /* log file for daemon mode */
extern int quitmode; /* if --quit was set */
-extern char *prc_pathname; /* path name of rc file */
+extern char *poprcfile; /* path name of rc file */
#ifdef HAVE_PROTOTYPES
@@ -108,7 +107,6 @@ int closeuserfolder (int fd);
int openmailpipe (struct optrec *options);
int closemailpipe (int fd);
char *MD5Digest (char *);
-char *prc_getpathname (struct optrec *cmd_opts, struct optrec *def_opts);
void reply_hack(char *buf, const char *host);
void append_server_names(int *pargc, char **argv);
int daemonize(const char *logfile, void (*)(void));
@@ -117,7 +115,6 @@ int daemonize(const char *logfile, void (*)(void));
char *getnextserver();
char *MD5Digest ();
-char *prc_getpathname();
void reply_hack ();
void append_server_names ();
int daemonize ();