aboutsummaryrefslogtreecommitdiff
path: root/src/libauth/login.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-06-17 03:27:35 +0000
committerrsc <devnull@localhost>2004-06-17 03:27:35 +0000
commitbe8b315d1522fa1c109a49435c1638bafd838b91 (patch)
tree4d8e2a0799ab463160b0a80feb0a008940d11230 /src/libauth/login.c
parentd9c8a7c5366aea63aa45b4afc6a75d133192786d (diff)
downloadplan9port-be8b315d1522fa1c109a49435c1638bafd838b91.tar.gz
plan9port-be8b315d1522fa1c109a49435c1638bafd838b91.tar.bz2
plan9port-be8b315d1522fa1c109a49435c1638bafd838b91.zip
basically none of these build
Diffstat (limited to 'src/libauth/login.c')
-rw-r--r--src/libauth/login.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libauth/login.c b/src/libauth/login.c
new file mode 100644
index 00000000..8bbc7b10
--- /dev/null
+++ b/src/libauth/login.c
@@ -0,0 +1,17 @@
+#include <u.h>
+#include <libc.h>
+#include <auth.h>
+
+int
+login(char *user, char *password, char *namespace)
+{
+ int rv;
+ AuthInfo *ai;
+
+ if((ai = auth_userpasswd(user, password)) == nil)
+ return -1;
+
+ rv = auth_chuid(ai, namespace);
+ auth_freeAI(ai);
+ return rv;
+}