tauth_attr.c - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tauth_attr.c (196B)
---
1 #include <u.h>
2 #include <libc.h>
3 #include <auth.h>
4 #include "authlocal.h"
5
6 Attr*
7 auth_attr(AuthRpc *rpc)
8 {
9 if(auth_rpc(rpc, "attr", nil, 0) != ARok)
10 return nil;
11 return _parseattr(rpc->arg);
12 }