Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- misc-utils/uuidd.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/misc-utils/uuidd.c b/misc-utils/uuidd.c index 77c967d..dce12c0 100644 --- a/misc-utils/uuidd.c +++ b/misc-utils/uuidd.c @@ -543,7 +543,6 @@ int main(int argc, char **argv) { const char *socket_path = UUIDD_SOCKET_PATH; const char *pidfile_path = NULL; - const char *pidfile_path_param = NULL; const char *err_context = NULL; char buf[1024], *cp; char str[UUID_STR_LEN]; @@ -601,7 +600,7 @@ int main(int argc, char **argv) _("failed to parse --uuids")); break; case 'p': - pidfile_path_param = optarg; + pidfile_path = optarg; break; case 'P': no_pid = 1; @@ -646,10 +645,8 @@ int main(int argc, char **argv) } } - if (!no_pid && !pidfile_path_param) + if (!no_pid && !pidfile_path) pidfile_path = UUIDD_PIDFILE_PATH; - else if (pidfile_path_param) - pidfile_path = pidfile_path_param; #ifdef HAVE_LIBSYSTEMD if (getppid() == 1 && 0 < sd_booted() && -- 2.9.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html