bnicholes 2002/11/20 09:33:53
Modified: user/netware userinfo.c
Log:
Fixed a variable name mismatch
Revision Changes Path
1.5 +1 -1 apr/user/netware/userinfo.c
Index: userinfo.c
===================================================================
RCS file: /home/cvs/apr/user/netware/userinfo.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- userinfo.c 20 Nov 2002 03:50:22 -0000 1.4
+++ userinfo.c 20 Nov 2002 17:33:53 -0000 1.5
@@ -132,5 +132,5 @@
/* deprecated */
APR_DECLARE(apr_status_t) apr_get_username(char **username, apr_uid_t
userid, apr_pool_t *p)
{
- return apr_uid_name_get(username, uid, p);
+ return apr_uid_name_get(username, userid, p);
}