diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-13 23:36:42 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-13 23:36:42 +0000 |
commit | bbe77448fcca03bec5bf6cdadb6c37dd32f067b8 (patch) | |
tree | c48ba605243c9629bd15a625889c23ce1b1ecbca /pop2.c | |
parent | 599f1a573263bf12b3d44920e79d36560f9bd7c9 (diff) | |
download | fetchmail-bbe77448fcca03bec5bf6cdadb6c37dd32f067b8.tar.gz fetchmail-bbe77448fcca03bec5bf6cdadb6c37dd32f067b8.tar.bz2 fetchmail-bbe77448fcca03bec5bf6cdadb6c37dd32f067b8.zip |
Nake methods invisible except through the driver's table.
svn path=/trunk/; revision=3249
Diffstat (limited to 'pop2.c')
-rw-r--r-- | pop2.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ static int pound_arg, equal_arg; -int pop2_ok (int sock, char *argbuf) +static int pop2_ok (int sock, char *argbuf) /* parse POP2 command response */ { int ok; @@ -51,7 +51,7 @@ int pop2_ok (int sock, char *argbuf) return(ok); } -int pop2_getauth(int sock, struct query *ctl, char *buf) +static int pop2_getauth(int sock, struct query *ctl, char *buf) /* apply for connection authorization */ { return(gen_transact(sock, |