aboutsummaryrefslogtreecommitdiff
path: root/console-tools
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-31 22:06:38 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-31 22:06:38 +0000
commite11ff718ac4bc10539dc31899cc75a6feb78467e (patch)
treeefa1904b812e5c6ecbcf68bedc7065977a3a4897 /console-tools
parent6f978dbacdd88a28bafe5b944a0bfff2203ef190 (diff)
downloadbusybox-e11ff718ac4bc10539dc31899cc75a6feb78467e.tar.gz
shrink the flag setting by reversing the operation
Diffstat (limited to 'console-tools')
-rw-r--r--console-tools/dumpkmap.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c
index 590ba4d08..fe962060e 100644
--- a/console-tools/dumpkmap.c
+++ b/console-tools/dumpkmap.c
@@ -54,17 +54,11 @@ int dumpkmap_main(int argc, char **argv)
write(1, magic, 7);
+ /* Here we want to set everything to 0 except for indexes:
+ * [0-2] [4-6] [8-10] [12] */
memset(flags, 0x00, MAX_NR_KEYMAPS);
- flags[0] = 1;
- flags[1] = 1;
- flags[2] = 1;
- flags[4] = 1;
- flags[5] = 1;
- flags[6] = 1;
- flags[8] = 1;
- flags[9] = 1;
- flags[10] = 1;
- flags[12] = 1;
+ memset(flags, 0x01, 13);
+ flags[3] = flags[7] = flags[11] = 0;
/* dump flags */
write(1, flags, MAX_NR_KEYMAPS);