diff options
-rw-r--r-- | udev_utils_run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_utils_run.c b/udev_utils_run.c index 8137ec1c66..1a92cddd8a 100644 --- a/udev_utils_run.c +++ b/udev_utils_run.c @@ -158,7 +158,7 @@ int run_program(const char *command, const char *subsystem, close(errpipe[WRITE_END]); } execv(argv[0], argv); - if ((errno == ENOENT) || (errno = ENOTDIR)) { + if (errno == ENOENT || errno == ENOTDIR) { /* may be on a filesytem which is not mounted right now */ info("program '%s' not found", argv[0]); } else { |