diff options
author | Petter Rodhelind <petter.rodhelind@gmail.com> | 2020-01-14 11:41:08 +0100 |
---|---|---|
committer | Petter Rodhelind <petter.rodhelind@gmail.com> | 2020-01-14 11:41:08 +0100 |
commit | 02d7aa8915f9c3a3288dab01f321eb94ba219e3b (patch) | |
tree | f053238978479e408a2b83571443e132f30586ab /src/libauth | |
parent | c0c9d8f883dfd3a7f5a74499d91bb95884b15873 (diff) | |
parent | 3d1382b98a502d0c34d5ba2c462396acc515016e (diff) | |
download | plan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.tar.gz plan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.tar.bz2 plan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/libauth')
-rw-r--r-- | src/libauth/attr.c | 1 | ||||
-rw-r--r-- | src/libauth/auth_proxy.c | 3 | ||||
-rw-r--r-- | src/libauth/auth_respond.c | 2 | ||||
-rw-r--r-- | src/libauth/fsamount.c | 3 | ||||
-rw-r--r-- | src/libauth/nsamount.c | 3 |
5 files changed, 4 insertions, 8 deletions
diff --git a/src/libauth/attr.c b/src/libauth/attr.c index 8adeefe6..be8d1ad3 100644 --- a/src/libauth/attr.c +++ b/src/libauth/attr.c @@ -174,4 +174,3 @@ _strfindattr(Attr *a, char *n) return nil; return a->val; } - diff --git a/src/libauth/auth_proxy.c b/src/libauth/auth_proxy.c index 257bafe7..a5fe4411 100644 --- a/src/libauth/auth_proxy.c +++ b/src/libauth/auth_proxy.c @@ -5,7 +5,7 @@ #include <9pclient.h> #include "authlocal.h" -enum { +enum { ARgiveup = 100 }; @@ -291,4 +291,3 @@ fsauth_proxy(CFid *fid, AuthGetkey *getkey, char *fmt, ...) auth_freerpc(rpc); return ai; } - diff --git a/src/libauth/auth_respond.c b/src/libauth/auth_respond.c index b3cf6665..4e271900 100644 --- a/src/libauth/auth_respond.c +++ b/src/libauth/auth_respond.c @@ -61,5 +61,5 @@ auth_respond(void *chal, uint nchal, char *user, uint nuser, void *resp, uint nr _freeattr(a); auth_freerpc(rpc); - return nresp; + return nresp; } diff --git a/src/libauth/fsamount.c b/src/libauth/fsamount.c index bece208a..4cb33bbd 100644 --- a/src/libauth/fsamount.c +++ b/src/libauth/fsamount.c @@ -11,7 +11,7 @@ fsamount(int fd, char *aname) CFid *afid, *fid; AuthInfo *ai; CFsys *fs; - + fs = fsinit(fd); if(fs == nil) return nil; @@ -30,4 +30,3 @@ noauth: fssetroot(fs, fid); return fs; } - diff --git a/src/libauth/nsamount.c b/src/libauth/nsamount.c index 1447904a..4e9b827a 100644 --- a/src/libauth/nsamount.c +++ b/src/libauth/nsamount.c @@ -11,7 +11,7 @@ nsamount(char *name, char *aname) CFid *afid, *fid; AuthInfo *ai; CFsys *fs; - + fs = nsinit(name); if(fs == nil) return nil; @@ -30,4 +30,3 @@ noauth: fssetroot(fs, fid); return fs; } - |