chiark / gitweb /
cdrom_id: remove unused --export switch to silent gcc
authorKay Sievers <kay.sievers@vrfy.org>
Mon, 16 May 2011 16:11:50 +0000 (18:11 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Mon, 16 May 2011 16:11:50 +0000 (18:11 +0200)
extras/cdrom_id/60-cdrom_id.rules
extras/cdrom_id/cdrom_id.c

index aedf6f0558994b2b9985a5a8caa89d80bf16d666..1ad1d0cc230cf39e43e132fcd30b71f3881a2dfa 100644 (file)
@@ -9,6 +9,6 @@ ENV{DEVTYPE}!="disk", GOTO="cdrom_end"
 ENV{DISK_EJECT_REQUEST}=="?*", GOTO="cdrom_end"
 
 KERNEL=="sr[0-9]*", ENV{ID_CDROM}="1"
-IMPORT{program}="cdrom_id --export $tempnode"
+IMPORT{program}="cdrom_id $tempnode"
 
 LABEL="cdrom_end"
index b2f897e3b55511708ec61534ca4ef11375503487..7908f6d19ae91a1c87c2e223caa48e43fd86ec95 100644 (file)
@@ -825,13 +825,11 @@ int main(int argc, char *argv[])
 {
        struct udev *udev;
        static const struct option options[] = {
-               { "export", no_argument, NULL, 'x' },
                { "debug", no_argument, NULL, 'd' },
                { "help", no_argument, NULL, 'h' },
                {}
        };
        const char *node = NULL;
-       int export = 0;
        int fd = -1;
        int cnt;
        int rc = 0;
@@ -846,7 +844,7 @@ int main(int argc, char *argv[])
        while (1) {
                int option;
 
-               option = getopt_long(argc, argv, "dxh", options, NULL);
+               option = getopt_long(argc, argv, "dh", options, NULL);
                if (option == -1)
                        break;
 
@@ -856,12 +854,8 @@ int main(int argc, char *argv[])
                        if (udev_get_log_priority(udev) < LOG_INFO)
                                udev_set_log_priority(udev, LOG_INFO);
                        break;
-               case 'x':
-                       export = 1;
-                       break;
                case 'h':
                        printf("Usage: cdrom_id [options] <device>\n"
-                              "  --export        export key/value pairs\n"
                               "  --debug         debug to stderr\n"
                               "  --help          print this help text\n\n");
                        goto exit;