From: Derrick Brashear Date: Thu, 21 Sep 2006 22:11:42 +0000 (+0000) Subject: STABLE14-pr-changeentry-arg-types-20060921 X-Git-Tag: openafs-stable-1_4_2~41 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=ba3d23d30222e87052256787eb8ac6ef46143536;p=packages%2Fo%2Fopenafs.git STABLE14-pr-changeentry-arg-types-20060921 FIXES 40568 this has been broken a while, we just noticed it because of prototypes (cherry picked from commit 955a58a5a850da4caeba9b45b0e8ff27a143b725) --- diff --git a/src/ptserver/ptuser.c b/src/ptserver/ptuser.c index b18a83594..1af357b2a 100644 --- a/src/ptserver/ptuser.c +++ b/src/ptserver/ptuser.c @@ -682,7 +682,7 @@ pr_ChangeEntry(char *oldname, char *newname, afs_int32 *newid, char *newowner) if (oid == ANONYMOUSID) return PRNOENT; } - code = ubik_PR_ChangeEntry(pruclient, 0, id, newname, oid, newid); + code = ubik_PR_ChangeEntry(pruclient, 0, id, newname, oid, *newid); return code; }