From: kay.sievers@vrfy.org Date: Tue, 29 Mar 2005 09:30:51 +0000 (+0200) Subject: [PATCH] fix udevtest to print the error if logging is disabled X-Git-Tag: 057~14 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=e03a196a0d0680868ea230ab8f8d100ee90d0fa4 [PATCH] fix udevtest to print the error if logging is disabled --- diff --git a/udevtest.c b/udevtest.c index 2caa654d4..93387f76d 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 "); - 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 "); + return 1; + } + /* remove sysfs_path if given */ if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0) devpath = &argv[1][strlen(sysfs_path)] ;