Index: branches/cu-security-branch/test/client/sysint/create.c
===================================================================
--- branches/cu-security-branch/test/client/sysint/create.c	(revision 7290)
+++ branches/cu-security-branch/test/client/sysint/create.c	(revision 8397)
@@ -26,5 +26,5 @@
     PVFS_object_ref parent_refn;
     PVFS_sys_attr attr;
-    PVFS_credential *cred;
+    PVFS_credentials credentials;
 
     if (argc != 2)
@@ -60,16 +60,15 @@
 
     memset(&resp_create, 0, sizeof(PVFS_sysresp_create));
-    cred = PVFS_util_gen_fake_credential();
-    assert(cred);
+    PVFS_util_gen_credentials(&credentials);
 
     entry_name = str_buf;
     attr.mask = PVFS_ATTR_SYS_ALL_SETABLE;
-    attr.owner = cred->userid;
-    attr.group = cred->group_array[0];
+    attr.owner = credentials.uid;
+    attr.group = credentials.gid;
     attr.perms = 1877;
     attr.atime = attr.ctime = attr.mtime = 
 	time(NULL);
 
-    ret = PINT_lookup_parent(filename, cur_fs, cred, 
+    ret = PINT_lookup_parent(filename, cur_fs, &credentials, 
                              &parent_refn.handle);
     if(ret < 0)
@@ -84,5 +83,5 @@
 
     ret = PVFS_sys_create(entry_name, parent_refn, attr,
-                          cred, NULL, NULL, &resp_create);
+                          &credentials, NULL, &resp_create, NULL, NULL);
     if (ret < 0)
     {
