ubik-call-sucks-20060703
[openafs.git] / src / viced / host.c
index 947cdf3..43d9d39 100644 (file)
@@ -405,7 +405,7 @@ hpr_GetHostCPS(afs_int32 host, prlist *CPS)
     }
 
     over = 0;
-    code = ubik_Call(PR_GetHostCPS, uclient, 0, host, CPS, &over);
+    code = ubik_PR_GetHostCPS(uclient, 0, host, CPS, &over);
     if (code != PRSUCCESS)
         return code;
     if (over) {
@@ -437,7 +437,7 @@ hpr_NameToId(namelist *names, idlist *ids)
 
     for (i = 0; i < names->namelist_len; i++)
         stolower(names->namelist_val[i]);
-    code = ubik_Call(PR_NameToID, uclient, 0, names, ids);
+    code = ubik_PR_NameToID(uclient, 0, names, ids);
     return code;
 #else
     return pr_NameToId(names, ids);
@@ -457,7 +457,7 @@ hpr_IdToName(idlist *ids, namelist *names)
         assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
     }
 
-    code = ubik_Call(PR_IDToName, uclient, 0, ids, names);
+    code = ubik_PR_IDToName(uclient, 0, ids, names);
     return code;
 #else
     return pr_IdToName(ids, names);
@@ -479,7 +479,7 @@ hpr_GetCPS(afs_int32 id, prlist *CPS)
     }
 
     over = 0;
-    code = ubik_Call(PR_GetCPS, uclient, 0, id, CPS, &over);
+    code = ubik_PR_GetCPS(uclient, 0, id, CPS, &over);
     if (code != PRSUCCESS)
         return code;
     if (over) {