diff --git a/cmd/zed/zed_conf.c b/cmd/zed/zed_conf.c index 1dbbb3b65bb7..abeaabd7e0c2 100644 --- a/cmd/zed/zed_conf.c +++ b/cmd/zed/zed_conf.c @@ -175,20 +175,14 @@ _zed_conf_display_help(const char *prog, int got_err) static void _zed_conf_display_license(void) { - const char **pp; - const char *text[] = { - "The ZFS Event Daemon (ZED) is distributed under the terms of the", - " Common Development and Distribution License (CDDL-1.0)", - " .", - "", + printf( + "The ZFS Event Daemon (ZED) is distributed under the terms of the\n" + " Common Development and Distribution License (CDDL-1.0)\n" + " .\n" + "\n" "Developed at Lawrence Livermore National Laboratory" - " (LLNL-CODE-403049).", - "", - NULL - }; - - for (pp = text; *pp; pp++) - printf("%s\n", *pp); + " (LLNL-CODE-403049).\n" + "\n"); exit(EXIT_SUCCESS); }