summaryrefslogtreecommitdiff
path: root/udevtest.c
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2005-03-29 11:30:51 +0200
committerGreg KH <gregkh@suse.de>2005-04-26 23:55:00 -0700
commite03a196a0d0680868ea230ab8f8d100ee90d0fa4 (patch)
tree3e1966d2bba447cdc6fc9c1c36c3dabe74057cb0 /udevtest.c
parentfb39f0566e248c09772ed15a3218ef2381700b6a (diff)
[PATCH] fix udevtest to print the error if logging is disabled
Diffstat (limited to 'udevtest.c')
-rw-r--r--udevtest.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/udevtest.c b/udevtest.c
index 2caa654d4c..93387f76d0 100644
--- a/udevtest.c
+++ b/udevtest.c
@@ -64,16 +64,16 @@ int main(int argc, char *argv[], char *envp[])
info("version %s", UDEV_VERSION);
- if (argc != 3) {
- info("Usage: udevtest <devpath> <subsystem>");
- return 1;
- }
-
/* initialize our configuration */
udev_init_config();
if (udev_log_priority < LOG_INFO)
udev_log_priority = LOG_INFO;
+ if (argc != 3) {
+ info("Usage: udevtest <devpath> <subsystem>");
+ return 1;
+ }
+
/* remove sysfs_path if given */
if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0)
devpath = &argv[1][strlen(sysfs_path)] ;