aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-07-03 13:18:52 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-07-03 13:18:52 +0000
commitd0de0b09e0bb671a4c35e76027eb65c861ed188b (patch)
tree649093949300a4ce42bf2a99ea25d865ecd97a06 /rcfile_y.y
parenteb0c61e4812ab19973df9b588f06c9d50a2d038c (diff)
downloadfetchmail-d0de0b09e0bb671a4c35e76027eb65c861ed188b.tar.gz
fetchmail-d0de0b09e0bb671a4c35e76027eb65c861ed188b.tar.bz2
fetchmail-d0de0b09e0bb671a4c35e76027eb65c861ed188b.zip
Get rid of prc_pathname, hide prc_server structure.
svn path=/trunk/; revision=32
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index ab883419..8f93c350 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -15,7 +15,7 @@
#include <config.h>
#include <stdio.h>
-extern char *prc_pathname;
+extern char *poprcfile;
extern int prc_lineno;
extern int prc_errflag;
extern char *yytext;
@@ -83,6 +83,6 @@ proto: PROTO_POP2
yyerror (s)
char *s;
{
- fprintf(stderr,"%s line %d: %s at %s\n", prc_pathname, prc_lineno, s, yytext);
+ fprintf(stderr,"%s line %d: %s at %s\n", poprcfile, prc_lineno, s, yytext);
prc_errflag++;
}