diff options
author | Denis Vlasenko | 2007-11-23 23:39:01 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-11-23 23:39:01 +0000 |
commit | d2023283ac87737cf0fbd77f4cbb1bb7b390009d (patch) | |
tree | dced57f559932ada4fe8503b3c588b3f7cd9c00b | |
parent | 1da0ad13fbe3175681943722e39b258ecbae96f6 (diff) | |
download | busybox-d2023283ac87737cf0fbd77f4cbb1bb7b390009d.zip busybox-d2023283ac87737cf0fbd77f4cbb1bb7b390009d.tar.gz |
fix buglets found by randomconfig
-rw-r--r-- | sysklogd/logger.c | 4 | ||||
-rw-r--r-- | util-linux/Config.in | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 60eac6a..970b05d 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c @@ -39,9 +39,9 @@ * * Original copyright notice is retained at the end of this file. */ -static int decode(char *name, CODE * codetab) +static int decode(char *name, const CODE *codetab) { - CODE *c; + const CODE *c; if (isdigit(*name)) return atoi(name); diff --git a/util-linux/Config.in b/util-linux/Config.in index 8b0bbd6..8ec466b 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in @@ -213,6 +213,7 @@ config HEXDUMP config HD bool "hd" default n + select HEXDUMP help hd is an alias to hexdump -C. |