chiark / gitweb /
fix typo in udev_utils_run.c
[elogind.git] / udev_utils_run.c
index 8137ec1c66168530f615069ecd97c4560ad2ffb6..1a92cddd8a28aed1d795f953474a2201f9d157e6 100644 (file)
@@ -158,7 +158,7 @@ int run_program(const char *command, const char *subsystem,
                        close(errpipe[WRITE_END]);
                }
                execv(argv[0], argv);
                        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 {
                        /* may be on a filesytem which is not mounted right now */
                        info("program '%s' not found", argv[0]);
                } else {