move from tame "ioctl" to tame "tty", which provides a better fit for
authorderaadt <deraadt@openbsd.org>
Wed, 7 Oct 2015 05:08:27 +0000 (05:08 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 7 Oct 2015 05:08:27 +0000 (05:08 +0000)
this program which uses tcgetattr().  the tcsetattr() calls are outside
the tame regions.

usr.bin/script/script.c

index dd34c06..1bb97d7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: script.c,v 1.29 2015/10/04 04:56:50 deraadt Exp $     */
+/*     $OpenBSD: script.c,v 1.30 2015/10/07 05:08:27 deraadt Exp $     */
 /*     $NetBSD: script.c,v 1.3 1994/12/21 08:55:43 jtc Exp $   */
 
 /*
@@ -165,7 +165,7 @@ main(int argc, char *argv[])
        sa.sa_handler = finish;
        (void)sigaction(SIGCHLD, &sa, NULL);
 
-       if (tame("stdio ioctl", NULL) == -1)
+       if (tame("stdio tty", NULL) == -1)
                err(1, "tame");
 
        (void)fclose(fscript);