diff options
author | obrien <obrien@FreeBSD.org> | 1998-11-14 03:11:37 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-11-14 03:11:37 +0000 |
commit | d9a3e6b7f346909cb3bf355119d588c1c35beb53 (patch) | |
tree | 0a9183234e55bb3195cf988d436e7cfea9b2b3d5 /contrib/amd/hlfsd | |
parent | 70b71c8c7acdd210992e7da0e1aff3283216bc75 (diff) | |
parent | c6e3533e1e31cbf25e04688d244a8fc2af2e1972 (diff) | |
download | FreeBSD-src-d9a3e6b7f346909cb3bf355119d588c1c35beb53.zip FreeBSD-src-d9a3e6b7f346909cb3bf355119d588c1c35beb53.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r41142,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/amd/hlfsd')
-rw-r--r-- | contrib/amd/hlfsd/stubs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/amd/hlfsd/stubs.c b/contrib/amd/hlfsd/stubs.c index 2ead112..ac97c0b 100644 --- a/contrib/amd/hlfsd/stubs.c +++ b/contrib/amd/hlfsd/stubs.c @@ -279,7 +279,7 @@ getcreds(struct svc_req *rp, uid_t *u, gid_t *g) case AUTH_DES: adp = (struct authdes_cred *) rp->rq_clntcred; *g = INVALIDID; /* some unknown group id */ - if (sscanf(adp->adc_fullname.name, "unix.%lu@", u) == 1) + if (sscanf(adp->adc_fullname.name, "unix.%lu@", (u_long *) u) == 1) break; /* fall through */ #endif /* HAVE_RPC_AUTH_DES_H */ |