Sign in
plan9port
/
plan9
/
32c6e78c6c4c13b63d8dc30aa395cfcc6e686c0a
/
.
/
src
/
libauth
/
auth_attr.c
blob: 2acc32f7990c17677e6188018132606e53f76ce1 [
file
] [
log
] [
blame
]
#include
<u.h>
#include
<libc.h>
#include
<auth.h>
#include
"authlocal.h"
Attr
*
auth_attr
(
AuthRpc
*
rpc
)
{
if
(
auth_rpc
(
rpc
,
"attr"
,
nil
,
0
)
!=
ARok
)
return
nil
;
return
_parseattr
(
rpc
->
arg
);
}