X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fudev%2Fudevadm-trigger.c;h=0ee27bb40873d3569f5d3c8a195bf2fdb4139087;hp=a898ef99e436bec13b950d27b638801a0f7d4e23;hb=9b1c2626cef16722603bded9bb52033aba34dd74;hpb=44433ebdb14d83750e0acdc4b3630b64f1fa18af diff --git a/src/udev/udevadm-trigger.c b/src/udev/udevadm-trigger.c index a898ef99e..0ee27bb40 100644 --- a/src/udev/udevadm-trigger.c +++ b/src/udev/udevadm-trigger.c @@ -51,11 +51,11 @@ static void exec_list(struct udev_enumerate *udev_enumerate, const char *action) if (dry_run) continue; strscpyl(filename, sizeof(filename), udev_list_entry_get_name(entry), "/uevent", NULL); - fd = open(filename, O_WRONLY); + fd = open(filename, O_WRONLY|O_CLOEXEC); if (fd < 0) continue; if (write(fd, action, strlen(action)) < 0) - log_debug("error writing '%s' to '%s': %m\n", action, filename); + log_debug("error writing '%s' to '%s': %m", action, filename); close(fd); } } @@ -141,13 +141,13 @@ static int adm_trigger(struct udev *udev, int argc, char *argv[]) else if (streq(optarg, "subsystems")) device_type = TYPE_SUBSYSTEMS; else { - log_error("unknown type --type=%s\n", optarg); + log_error("unknown type --type=%s", optarg); return 2; } break; case 'c': if (!nulstr_contains("add\0" "remove\0" "change\0", optarg)) { - log_error("unknown action '%s'\n", optarg); + log_error("unknown action '%s'", optarg); return 2; } else action = optarg; @@ -189,7 +189,7 @@ static int adm_trigger(struct udev *udev, int argc, char *argv[]) util_remove_trailing_chars(path, '/'); dev = udev_device_new_from_syspath(udev, path); if (dev == NULL) { - log_error("unable to open the device '%s'\n", optarg); + log_error("unable to open the device '%s'", optarg); return 2; } udev_enumerate_add_match_parent(udev_enumerate, dev);