diff --git a/tests/common/common.h b/tests/common/common.h index fcc41133f0..747684039a 100644 --- a/tests/common/common.h +++ b/tests/common/common.h @@ -32,7 +32,7 @@ extern int afstest_AddDESKeyFile(struct afsconf_dir *dir); /* servers.c */ extern int afstest_StartVLServer(char *dirname, pid_t *serverPid); -extern int afstest_StopVLServer(pid_t serverPid); +extern int afstest_StopServer(pid_t serverPid); /* ubik.c */ struct ubik_client; diff --git a/tests/common/servers.c b/tests/common/servers.c index 18b94028f8..a322e23403 100644 --- a/tests/common/servers.c +++ b/tests/common/servers.c @@ -45,7 +45,7 @@ afstest_StartVLServer(char *dirname, pid_t *serverPid) } int -afstest_StopVLServer(pid_t serverPid) +afstest_StopServer(pid_t serverPid) { int status; diff --git a/tests/volser/vos-t.c b/tests/volser/vos-t.c index a247e0e61c..eb58547697 100644 --- a/tests/volser/vos-t.c +++ b/tests/volser/vos-t.c @@ -125,7 +125,7 @@ main(int argc, char **argv) TestListAddrs(ubikClient, dirname); - code = afstest_StopVLServer(serverPid); + code = afstest_StopServer(serverPid); is_int(0, code, "Server exited cleanly"); return 0;