a bit of polish on makedevs
authorEric Andersen <andersen@codepoet.org>
Mon, 18 Jul 2005 09:42:37 +0000 (09:42 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 18 Jul 2005 09:42:37 +0000 (09:42 -0000)
include/usage.h
miscutils/makedevs.c

index 831a9a7..ff99c40 100644 (file)
        "      p       Fifo (named pipe)\n" \
        "uid is the user id for the target file, gid is the group id for the\n" \
        "target file.  The rest of the entries (major, minor, etc) apply to\n" \
-       "to device special files.  A '-' may be used for blank entries.\n\n" \
+       "to device special files.  A '-' may be used for blank entries."
 #define makedevs_example_usage \
        "For example:\n" \
        "<name>    <type> <mode><uid><gid><major><minor><start><inc><count>\n" \
        "/dev/null\n" \
        "/dev/zero\n" \
        "/dev/hda\n" \
-       "/dev/hda[0-15]"
+       "/dev/hda[0-15]\n"
 #endif
 
 #ifdef CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
index eb3e368..ffcbe7a 100644 (file)
@@ -6,6 +6,7 @@
 #include <fcntl.h>
 #include <getopt.h>
 #include <time.h>
+#include <ctype.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/sysmacros.h>     /* major() and minor() */