From: Simon Ruderich Date: Sat, 3 Nov 2018 06:23:19 +0000 (+0100) Subject: Make another multi-line comment consistent X-Git-Tag: 0.1~8 X-Git-Url: https://ruderich.org/simon/gitweb/?p=ptyas%2Fptyas.git;a=commitdiff_plain;h=a39434b70dfe6428b3c8ef5061b6f0a1475974b5 Make another multi-line comment consistent --- 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"); }