diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-07-18 09:42:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-07-18 09:42:37 +0000 |
commit | 54e57da96a073330463dde1f62fda85b7290ed4c (patch) | |
tree | 397bc76a7fe980ec756762c257461c67063fad18 | |
parent | 1b7058c65371ec219a0965f4bd3a6d81ad95c870 (diff) | |
download | busybox-54e57da96a073330463dde1f62fda85b7290ed4c.tar.gz |
a bit of polish on makedevs
-rw-r--r-- | include/usage.h | 4 | ||||
-rw-r--r-- | miscutils/makedevs.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 831a9a74a..ff99c4041 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1686,7 +1686,7 @@ " 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" \ @@ -1702,7 +1702,7 @@ "/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 diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index eb3e3680d..ffcbe7ac3 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c @@ -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() */ |