Imported Upstream version 0.66.1
[hcoop/debian/courier-authlib.git] / preauthuserdb.c
1 /*
2 ** Copyright 1998 - 1999 Double Precision, Inc. See COPYING for
3 ** distribution information.
4 */
5
6
7
8 #include "auth.h"
9
10 extern int auth_userdb_pre_common(const char *, const char *, int,
11 int (*callback)(struct authinfo *, void *),
12 void *arg);
13
14 int auth_userdb_pre(const char *userid, const char *service,
15 int (*callback)(struct authinfo *, void *),
16 void *arg)
17 {
18 return (auth_userdb_pre_common(userid, service, 1, callback, arg));
19 }