git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
b613480
)
pr-changeentry-arg-types-20060921
author
Derrick Brashear
<shadow@dementia.org>
Thu, 21 Sep 2006 22:10:28 +0000 (22:10 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Thu, 21 Sep 2006 22:10:28 +0000 (22:10 +0000)
FIXES 40568
this has been broken a while, we just noticed it because of prototypes
src/ptserver/ptuser.c
patch
|
blob
|
history
diff --git
a/src/ptserver/ptuser.c
b/src/ptserver/ptuser.c
index
573c894
..
5c525f7
100644
(file)
--- 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;
}