Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/src/cmd/unix/drawterm/libauth/auth_attr.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include <u.h>
2
#include <libc.h>
3
#include <auth.h>
4
#include <authsrv.h>
5
#include "authlocal.h"
6
 
7
Attr*
8
auth_attr(AuthRpc *rpc)
9
{
10
	if(auth_rpc(rpc, "attr", nil, 0) != ARok)
11
		return nil;
12
	return _parseattr(rpc->arg);
13
}