]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - utils/statd/misc.c
statd: Use the new nsm_ file.c calls in rpc.statd
[nfs-utils.git] / utils / statd / misc.c
index 44af30eea07ef8ccf7d4f9990c5ed18540c66041..f2a086f33b2c1f9f90000d8231dbae2113b43785 100644 (file)
@@ -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);
-}