Initial revision

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@101 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Björn Groenvall
1995-09-04 21:41:38 +00:00
parent 70ab525525
commit 07ebff2bbf

18
lib/roken/iruserok.c Normal file
View File

@@ -0,0 +1,18 @@
#include "bsd_locl.h"
#ifndef HAVE_IRUSEROK
int __check_rhosts_file = 1;
char *__rcmd_errstr = 0;
/*
* Returns 0 if ok, -1 if not ok.
*/
int
iruserok(u_int32_t raddr, int superuser, const char *ruser, const char *luser)
{
return -1;
}
#endif /* !HAVE_IRUSEROK */