X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fudev%2Fudevadm-control.c;h=6e3bc2ae98f3ddd0db5f1e738ecaa512011a1786;hb=24078eebf3eb1fbda9a4a4478a85ea36c028f0ec;hp=00a909fc3171ed1c1a0af14b84bef65aa20ed1d9;hpb=7643ac9a8add1f07ffc237c054feb443b5612717;p=elogind.git diff --git a/src/udev/udevadm-control.c b/src/udev/udevadm-control.c index 00a909fc3..6e3bc2ae9 100644 --- a/src/udev/udevadm-control.c +++ b/src/udev/udevadm-control.c @@ -26,9 +26,9 @@ #include #include "udev.h" +#include "udev-util.h" -static void print_help(void) -{ +static void print_help(void) { printf("Usage: udevadm control COMMAND\n" " -e,--exit instruct the daemon to cleanup and exit\n" " -l,--log-priority=LEVEL set the udev log level for the daemon\n" @@ -41,9 +41,8 @@ static void print_help(void) " -h,--help print this help text\n\n"); } -static int adm_control(struct udev *udev, int argc, char *argv[]) -{ - struct udev_ctrl *uctrl = NULL; +static int adm_control(struct udev *udev, int argc, char *argv[]) { + _cleanup_udev_ctrl_unref_ struct udev_ctrl *uctrl = NULL; int timeout = 60; int rc = 1, c; @@ -85,7 +84,7 @@ static int adm_control(struct udev *udev, int argc, char *argv[]) i = util_log_priority(optarg); if (i < 0) { fprintf(stderr, "invalid number '%s'\n", optarg); - goto out; + return rc; } if (udev_ctrl_send_set_log_level(uctrl, util_log_priority(optarg), timeout) < 0) rc = 2; @@ -114,7 +113,7 @@ static int adm_control(struct udev *udev, int argc, char *argv[]) case 'p': if (strchr(optarg, '=') == NULL) { fprintf(stderr, "expect = instead of '%s'\n", optarg); - goto out; + return rc; } if (udev_ctrl_send_set_env(uctrl, optarg, timeout) < 0) rc = 2; @@ -128,7 +127,7 @@ static int adm_control(struct udev *udev, int argc, char *argv[]) i = strtoul(optarg, &endp, 0); if (endp[0] != '\0' || i < 1) { fprintf(stderr, "invalid number '%s'\n", optarg); - goto out; + return rc; } if (udev_ctrl_send_set_children_max(uctrl, i, timeout) < 0) rc = 2; @@ -156,8 +155,6 @@ static int adm_control(struct udev *udev, int argc, char *argv[]) fprintf(stderr, "Extraneous argument: %s\n", argv[optind]); else if (optind == 1) fprintf(stderr, "Option missing\n"); -out: - udev_ctrl_unref(uctrl); return rc; }