=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/column/column.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- src/usr.bin/column/column.c 2015/10/05 13:30:30 1.20 +++ src/usr.bin/column/column.c 2015/10/09 01:37:07 1.21 @@ -1,4 +1,4 @@ -/* $OpenBSD: column.c,v 1.20 2015/10/05 13:30:30 deraadt Exp $ */ +/* $OpenBSD: column.c,v 1.21 2015/10/09 01:37:07 deraadt Exp $ */ /* $NetBSD: column.c,v 1.4 1995/09/02 05:53:03 jtc Exp $ */ /* @@ -76,8 +76,8 @@ } else termwidth = win.ws_col; - if (tame("stdio rpath", NULL) == -1) - err(1, "tame"); + if (pledge("stdio rpath", NULL) == -1) + err(1, "pledge"); tflag = xflag = 0; while ((ch = getopt(argc, argv, "c:s:tx")) != -1) @@ -116,8 +116,8 @@ } } } - if (tame("stdio", NULL) == -1) - err(1, "tame"); + if (pledge("stdio", NULL) == -1) + err(1, "pledge"); if (!entries) exit(eval);