]> git.saurik.com Git - apple/file_cmds.git/blobdiff - mknod/mknod.c
file_cmds-116.10.tar.gz
[apple/file_cmds.git] / mknod / mknod.c
index c45abd52711c1cda66996830f4e9399ee0e3b2f3..884b8e5fea7571a558740d1010c9d62e9fbc8471 100644 (file)
@@ -51,6 +51,7 @@ __RCSID("$NetBSD: mknod.c,v 1.15 1998/09/11 07:22:13 mycroft Exp $");
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <string.h>
 
 int main __P((int, char *[]));
 static void usage __P((void));
@@ -379,7 +380,7 @@ main(argc, argv)
        printf("name: %s\nmode: %05o\ndev:  %08x\n", name, mode, dev);
 #else
        if (mknod(name, mode, dev) < 0)
-               err(1, "%s", argv[0]);
+               err(1, "%s", name);
 #endif
 
        exit(0);