diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-06-30 16:07:12 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-06-30 16:07:12 +0000 |
commit | 7b0d9fa148d69b7955c9e9da30f5d391cdf6fe2f (patch) | |
tree | 6cf506c58bd07f86ea4a2adb541986dff20ff399 /src | |
parent | ed58879d617aa915b3f3a10dfef85d998f6387dc (diff) | |
download | s6-rc-7b0d9fa148d69b7955c9e9da30f5d391cdf6fe2f.tar.xz |
Don't mash words in info messages!
Diffstat (limited to 'src')
-rw-r--r-- | src/s6-rc/s6-rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s6-rc/s6-rc.c b/src/s6-rc/s6-rc.c index 5b44447..76e38da 100644 --- a/src/s6-rc/s6-rc.c +++ b/src/s6-rc/s6-rc.c @@ -300,7 +300,7 @@ static inline void on_success (unsigned int i, int h) if (h) state[i] |= 1 ; else state[i] &= 254 ; announce() ; if (verbosity >= 2) - strerr_warni5x(dryrun[0] ? "simulation: " : "", "service ", db->string + db->services[i].name, "successfully st", h ? "arted" : "opped") ; + strerr_warni5x(dryrun[0] ? "simulation: " : "", "service ", db->string + db->services[i].name, " successfully st", h ? "arted" : "opped") ; if (!lameduck) broadcast_success(i, h) ; } |