]> ruderich.org/simon Gitweb - ptyas/ptyas.git/commitdiff
Add missing newline to a few die_fmt() calls
authorSimon Ruderich <simon@ruderich.org>
Tue, 5 Oct 2021 08:23:18 +0000 (10:23 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 5 Oct 2021 08:23:18 +0000 (10:23 +0200)
ptyas.c

diff --git a/ptyas.c b/ptyas.c
index 25f49aa2fc81ebb3d935ec87403857d8606a25a2..dc5f3de85e5ba2646652d2440c1504f8c5a956a4 100644 (file)
--- 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("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. */
     }
 
     /* 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) {
         }
         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) {
         }
     }
     /* Just to be safe. */
     if (setuid(0) != -1) {
-        die_fmt("failed to drop privileges (setuid)");
+        die_fmt("failed to drop privileges (setuid)\n");
     }
 }
 
     }
 }