preauthuserdb.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
- /*
- ** Copyright 1998 - 1999 Double Precision, Inc. See COPYING for
- ** distribution information.
- */
- static const char rcsid[]="$Id: preauthuserdb.c,v 1.4 2000/02/20 21:48:36 mrsam Exp $";
- #include "auth.h"
- extern int auth_userdb_pre_common(const char *, const char *, int,
- int (*callback)(struct authinfo *, void *),
- void *arg);
- int auth_userdb_pre(const char *userid, const char *service,
- int (*callback)(struct authinfo *, void *),
- void *arg)
- {
- return (auth_userdb_pre_common(userid, service, 0, callback, arg));
- }