From 95dc83bfbcfeffd1f1dca97e1c5b9a346e0ea42e Mon Sep 17 00:00:00 2001 From: xdavidwu Date: Wed, 20 Jul 2022 15:48:23 +0800 Subject: [PATCH] openrc: fix help messages The two lines seem to both belong to --override, but made into seperate array elements accidentally, making options after --override and their help mismatch. This fixes it. --- src/openrc/rc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/openrc/rc.c b/src/openrc/rc.c index c1ca1bd7..c853c829 100644 --- a/src/openrc/rc.c +++ b/src/openrc/rc.c @@ -64,8 +64,7 @@ const struct option longopts[] = { }; const char * const longopts_help[] = { "do not stop any services", - "override the next runlevel to change into\n", - "when leaving single user or boot runlevels", + "override the next runlevel to change into\nwhen leaving single user or boot runlevels", "runs the service specified with the rest\nof the arguments", "output the RC system type, if any", longopts_help_COMMON