From 99979a6cf2f862d2365d27fa90fab4416c374903 Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Mon, 11 Jan 2010 19:13:59 -0500 Subject: statd: Use the new nsm_ file.c calls in rpc.statd Replace open-coded accesses to on-disk NSM information in rpc.statd with calls to the new API. Behavior should be much the same as it was before. Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- utils/statd/misc.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'utils/statd/misc.c') diff --git a/utils/statd/misc.c b/utils/statd/misc.c index 44af30e..f2a086f 100644 --- a/utils/statd/misc.c +++ b/utils/statd/misc.c @@ -49,27 +49,3 @@ xstrdup (const char *string) return (result); } - - -/* - * Unlinking a file. - */ -void -xunlink (char *path, char *host) -{ - char *tozap; - - tozap = malloc(strlen(path)+strlen(host)+2); - if (tozap == NULL) { - xlog(L_ERROR, "xunlink: malloc failed: errno %d (%m)", errno); - return; - } - sprintf (tozap, "%s/%s", path, host); - - if (unlink (tozap) == -1) - xlog(L_ERROR, "unlink (%s): %m", tozap); - else - xlog(D_GENERAL, "Unlinked %s", tozap); - - free(tozap); -} -- cgit