src/afs/afs_user.c typo

Commit eb8e55bba7 had a paren-related
typo. Correct it to make afs_user.c build on some platforms again.

Change-Id: Iec4634b4c0f1769c81bf9baab0d2cc53f47aaa9c
Reviewed-on: http://gerrit.openafs.org/843
Reviewed-by: Marc Dionne <marc.c.dionne@gmail.com>
Reviewed-by: Alistair Ferguson <alistair.ferguson@mac.com>
Tested-by: Derrick Brashear <shadow@dementia.org>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Andrew Deason 2009-11-18 14:14:16 -06:00 committed by Derrick Brashear
parent 9c61e1196a
commit 84cc4f2b36

View File

@ -612,7 +612,7 @@ afs_GCPAGs_perproc_func(afs_proc_t * pproc)
#elif defined(AFS_SUN510_ENV) #elif defined(AFS_SUN510_ENV)
uid = (pag != NOPAG ? pag : crgetruid(pcred)); uid = (pag != NOPAG ? pag : crgetruid(pcred));
#else #else
uid = (pag != NOPAG ? pag : afs_cr_ruid(pcred); uid = (pag != NOPAG ? pag : afs_cr_ruid(pcred));
#endif #endif
hash = UHash(uid); hash = UHash(uid);