diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 18:15:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 18:15:36 +0000 |
commit | f5bb91dc606f920f143538c5de4635aa9cbb190a (patch) | |
tree | 8b740edb010b43c910d25231ff080c37c8b1b10e /fetchmail.h | |
parent | 5d909520548ad3b175fa568554affcca96f294e1 (diff) | |
download | fetchmail-f5bb91dc606f920f143538c5de4635aa9cbb190a.tar.gz fetchmail-f5bb91dc606f920f143538c5de4635aa9cbb190a.tar.bz2 fetchmail-f5bb91dc606f920f143538c5de4635aa9cbb190a.zip |
Added configuration dumper.
svn path=/trunk/; revision=1809
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 0c74fec7..e4792fb1 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -275,7 +275,7 @@ extern char *user; /* name of invoking user */ extern char *home; /* home directory of invoking user */ extern char *fetchmailhost; /* the name of the host running fetchmail */ extern int pass; /* number of re-polling pass */ -extern flag pythondump; /* dump control blocks as Python dictionary */ +extern flag configdump; /* dump control blocks as Python dictionary */ /* prototypes for globally callable functions */ @@ -378,6 +378,7 @@ char *getpassword(char *); void escapes(const char *, char *); char *visbuf(const char *); char *showproto(int); +void dump_config(struct runctl *runp, struct query *querylist); void yyerror(const char *); int yylex(void); |