From a39434b70dfe6428b3c8ef5061b6f0a1475974b5 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 3 Nov 2018 07:23:19 +0100 Subject: [PATCH] Make another multi-line comment consistent --- ptyas.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ptyas.c b/ptyas.c index 2d0614d..4b7b208 100644 --- a/ptyas.c +++ b/ptyas.c @@ -82,9 +82,11 @@ static void open_pty_or_die(int *pty_master, int *pty_slave, uid_t uid) { if (*pty_slave == -1) { die("open slave tty"); } - /* The user must be able to write to the new TTY. Normally grantpt() would + /* + * The user must be able to write to the new TTY. Normally grantpt() would * do this for us, but we don't trust the user and thus don't want to pass - * the pty_master to a process running under that uid. */ + * the pty_master to a process running under that uid. + */ if (chown(slave_path, uid, (gid_t)-1) != 0) { die("chown slave tty"); } -- 2.43.2