Tito writes: this patch fixes two potential bugs with the -i -I flags that could...
authorMike Frysinger <vapier@gentoo.org>
Wed, 7 Jun 2006 14:25:22 +0000 (14:25 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Jun 2006 14:25:22 +0000 (14:25 -0000)
miscutils/hdparm.c

index 5ac7bdc..5703ece 100644 (file)
@@ -2122,8 +2122,8 @@ int hdparm_main(int argc, char **argv)
        while ((c = getopt(argc, argv, hdparm_options)) >= 0) {
                flagcount++;
                if (c == 'h') bb_show_usage(); /* EXIT */
-               USE_FEATURE_HDPARM_GET_IDENTITY(get_IDentity = (c == 'I'));
-               USE_FEATURE_HDPARM_GET_IDENTITY(get_identity = (c == 'i'));
+               USE_FEATURE_HDPARM_GET_IDENTITY(get_IDentity |= (c == 'I'));
+               USE_FEATURE_HDPARM_GET_IDENTITY(get_identity |= (c == 'i'));
                get_geom |= (c == 'g');
                do_flush |= (c == 'f');
                if (c == 'u') parse_opts(&get_unmask, &set_unmask, &unmask, 0, 1);