mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
12 lines
196 B
C
12 lines
196 B
C
#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);
|
|
}
|