summaryrefslogtreecommitdiff
path: root/libexec/identd/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/identd/parse.c')
-rw-r--r--libexec/identd/parse.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/identd/parse.c b/libexec/identd/parse.c
index 7a3d5e9eab7..c31752d00e1 100644
--- a/libexec/identd/parse.c
+++ b/libexec/identd/parse.c
@@ -26,17 +26,16 @@
#define IO_TIMEOUT 30 /* Timeout I/O operations after N seconds */
-static int check_noident __P((char *));
+int check_noident __P((char *));
ssize_t timed_read __P((int, void *, size_t, time_t));
ssize_t timed_write __P((int, const void *, size_t, time_t));
-int parse __P((int, struct in_addr *, struct in_addr *));
void gentoken __P((char *, int));
/*
* A small routine to check for the existance of the ".noident"
* file in a users home directory.
*/
-static int
+int
check_noident(homedir)
char *homedir;
{