From 3567441f92349bb21bb42405ecf6ada4844551e5 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Tue, 22 Sep 2009 17:36:38 -0500 Subject: [PATCH] Remove one more AFS_UCRED struct After 8a8244dd351f865af2da3b5ebb746ba57723b6a9, AFS_UCRED is no longer assumed to be a struct. Fix one instance that still declares it as a struct. Reviewed-on: http://gerrit.openafs.org/487 Tested-by: Derrick Brashear Reviewed-by: Derrick Brashear --- src/afs/afs_pioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afs/afs_pioctl.c b/src/afs/afs_pioctl.c index abe0ac076..bd4a5f22a 100644 --- a/src/afs/afs_pioctl.c +++ b/src/afs/afs_pioctl.c @@ -3970,7 +3970,7 @@ DECL_PIOCTL(PSetRxkcrypt) #define PIOCTL_HEADER 6 static int HandleClientContext(struct afs_ioctl *ablob, int *com, - AFS_UCRED **acred, struct AFS_UCRED *credp) + AFS_UCRED **acred, AFS_UCRED *credp) { char *ain, *inData; afs_uint32 hostaddr; -- 2.39.5