From: Morten Linderud Date: Fri, 10 Mar 2023 19:20:44 +0000 (+0100) Subject: src: Fixup copy-paste error for terminal_urlify_man X-Git-Tag: v254-rc1~1063^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dadf31d6123a9127ee6ceccbcc272d53ec5f8fa;p=thirdparty%2Fsystemd.git src: Fixup copy-paste error for terminal_urlify_man Signed-off-by: Morten Linderud --- diff --git a/src/boot/pcrphase.c b/src/boot/pcrphase.c index 05e9645de94..896e2486532 100644 --- a/src/boot/pcrphase.c +++ b/src/boot/pcrphase.c @@ -35,7 +35,7 @@ static int help(int argc, char *argv[], void *userdata) { _cleanup_free_ char *link = NULL; int r; - r = terminal_urlify_man("systemd-pcrphase", "1", &link); + r = terminal_urlify_man("systemd-pcrphase", "8", &link); if (r < 0) return log_oom(); diff --git a/src/oom/oomd.c b/src/oom/oomd.c index eb1b8306059..2d6819daeed 100644 --- a/src/oom/oomd.c +++ b/src/oom/oomd.c @@ -45,7 +45,7 @@ static int help(void) { _cleanup_free_ char *link = NULL; int r; - r = terminal_urlify_man("systemd-oomd", "1", &link); + r = terminal_urlify_man("systemd-oomd", "8", &link); if (r < 0) return log_oom(); diff --git a/src/partition/repart.c b/src/partition/repart.c index d80ba573df5..e8f3cb7fe7b 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -5598,7 +5598,7 @@ static int help(void) { _cleanup_free_ char *link = NULL; int r; - r = terminal_urlify_man("systemd-repart", "1", &link); + r = terminal_urlify_man("systemd-repart", "8", &link); if (r < 0) return log_oom(); diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c index 0c4391991be..4553e90a505 100644 --- a/src/sysext/sysext.c +++ b/src/sysext/sysext.c @@ -883,7 +883,7 @@ static int verb_help(int argc, char **argv, void *userdata) { _cleanup_free_ char *link = NULL; int r; - r = terminal_urlify_man("systemd-sysext", "1", &link); + r = terminal_urlify_man("systemd-sysext", "8", &link); if (r < 0) return log_oom(); diff --git a/src/sysupdate/sysupdate.c b/src/sysupdate/sysupdate.c index a3d2c5a9b91..4ad901e0809 100644 --- a/src/sysupdate/sysupdate.c +++ b/src/sysupdate/sysupdate.c @@ -1185,7 +1185,7 @@ static int verb_help(int argc, char **argv, void *userdata) { _cleanup_free_ char *link = NULL; int r; - r = terminal_urlify_man("systemd-sysupdate", "1", &link); + r = terminal_urlify_man("systemd-sysupdate", "8", &link); if (r < 0) return log_oom();