mirror of
https://github.com/systemd/systemd.git
synced 2025-08-24 09:49:49 +03:00
[PATCH] fix udevtest to print the error if logging is disabled
This commit is contained in:
committed by
Greg KH
parent
fb39f0566e
commit
e03a196a0d
10
udevtest.c
10
udevtest.c
@ -64,16 +64,16 @@ int main(int argc, char *argv[], char *envp[])
|
|||||||
|
|
||||||
info("version %s", UDEV_VERSION);
|
info("version %s", UDEV_VERSION);
|
||||||
|
|
||||||
if (argc != 3) {
|
|
||||||
info("Usage: udevtest <devpath> <subsystem>");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize our configuration */
|
/* initialize our configuration */
|
||||||
udev_init_config();
|
udev_init_config();
|
||||||
if (udev_log_priority < LOG_INFO)
|
if (udev_log_priority < LOG_INFO)
|
||||||
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 */
|
/* remove sysfs_path if given */
|
||||||
if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0)
|
if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0)
|
||||||
devpath = &argv[1][strlen(sysfs_path)] ;
|
devpath = &argv[1][strlen(sysfs_path)] ;
|
||||||
|
Reference in New Issue
Block a user