From: Simon Ruderich Date: Tue, 5 Oct 2021 08:23:18 +0000 (+0200) Subject: Add missing newline to a few die_fmt() calls X-Git-Tag: 0.2~2 X-Git-Url: https://ruderich.org/simon/gitweb/?p=ptyas%2Fptyas.git;a=commitdiff_plain;h=a340b52624733c23fe40d61d181916e4bd778945;hp=09096d9ba0eb9bc938b7bd050a89abd949bf7257 Add missing newline to a few die_fmt() calls --- diff --git a/ptyas.c b/ptyas.c index 25f49aa..dc5f3de 100644 --- a/ptyas.c +++ b/ptyas.c @@ -121,7 +121,7 @@ static void drop_privileges_or_die(uid_t uid, gid_t gid) { die("setgroups"); } if (getgroups(0, NULL) != 0) { - die_fmt("failed to drop all supplementary groups"); + die_fmt("failed to drop all supplementary groups\n"); } /* Dropping groups may require privileges, do that first. */ @@ -145,12 +145,12 @@ static void drop_privileges_or_die(uid_t uid, gid_t gid) { } if ( uid != ruid || uid != euid || uid != suid || gid != rgid || gid != egid || gid != sgid) { - die_fmt("failed to drop privileges"); + die_fmt("failed to drop privileges\n"); } } /* Just to be safe. */ if (setuid(0) != -1) { - die_fmt("failed to drop privileges (setuid)"); + die_fmt("failed to drop privileges (setuid)\n"); } }