From 0ccf2a791f773cd0c6ac624678d3cdd8d2d5b5e4 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 20 Apr 2024 10:39:15 -0500 Subject: [PATCH] Indent the help text block. --- toys/pending/syslogd.c | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/toys/pending/syslogd.c b/toys/pending/syslogd.c index d80bea0e..43ccd9b2 100644 --- a/toys/pending/syslogd.c +++ b/toys/pending/syslogd.c @@ -11,25 +11,25 @@ config SYSLOGD bool "syslogd" default n help - usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval] - [-p socket] [-s SIZE] [-b N] [-R HOST] [-l N] [-nSLKD] - - System logging utility - - -a Extra unix socket for listen - -O FILE Default log file - -f FILE Config file - -p Alternative unix domain socket - -n Avoid auto-backgrounding - -S Smaller output - -m MARK interval (RANGE: 0 to 71582787) - -R HOST Log to IP or hostname on PORT (default PORT=514/UDP)" - -L Log locally and via network (default is network only if -R)" - -s SIZE Max size (KB) before rotation (default:200KB, 0=off) - -b N rotated logs to keep (default:1, max=99, 0=purge) - -K Log to kernel printk buffer (use dmesg to read it) - -l N Log only messages more urgent than prio(default:8 max:8 min:1) - -D Drop duplicates + usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval] + [-p socket] [-s SIZE] [-b N] [-R HOST] [-l N] [-nSLKD] + + System logging utility + + -a Extra unix socket for listen + -O FILE Default log file + -f FILE Config file + -p Alternative unix domain socket + -n Avoid auto-backgrounding + -S Smaller output + -m MARK interval (RANGE: 0 to 71582787) + -R HOST Log to IP or hostname on PORT (default PORT=514/UDP)" + -L Log locally and via network (default is network only if -R)" + -s SIZE Max size (KB) before rotation (default:200KB, 0=off) + -b N rotated logs to keep (default:1, max=99, 0=purge) + -K Log to kernel printk buffer (use dmesg to read it) + -l N Log only messages more urgent than prio(default:8 max:8 min:1) + -D Drop duplicates */ #define FOR_syslogd -- 2.39.2