On Fri, 2007-08-31 at 11:17 +0100, Joe Orton wrote:
> Can you check whether the trunk works on the same boxes?
Indeed it does. And the diff between testuser.c in trunk and 1.2.x shows
why (partial diff below):
--- test/testuser.c 2007-07-03 10:00:56.000000000 +1000
+++ ../../1.2.x/apr/test/testuser.c 2007-04-18 11:25:48.000000000
+1000
@@ -44,9 +44,6 @@
apr_uid_name_get(&uname, uid, p));
ABTS_PTR_NOTNULL(tc, uname);
- if (uname == NULL)
- return;
-
APR_ASSERT_SUCCESS(tc, "apr_uid_get failed",
apr_uid_get(&retreived_uid, &retreived_gid,
uname, p));
@@ -90,9 +87,6 @@
apr_gid_name_get(&gname, gid, p));
ABTS_PTR_NOTNULL(tc, gname);
- if (gname == NULL)
- return;
-
APR_ASSERT_SUCCESS(tc, "apr_gid_get failed",
apr_gid_get(&retreived_gid, gname, p));
--
Bojan