=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/client.c,v retrieving revision 1.104 retrieving revision 1.105 diff -u -r1.104 -r1.105 --- src/usr.bin/tmux/client.c 2015/11/14 09:41:06 1.104 +++ src/usr.bin/tmux/client.c 2015/11/15 14:32:48 1.105 @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.104 2015/11/14 09:41:06 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.105 2015/11/15 14:32:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -289,7 +289,7 @@ * * "sendfd" is dropped later in client_dispatch_wait(). */ - if (0 && pledge("stdio unix sendfd proc exec tty", NULL) != 0) + if (pledge("stdio unix sendfd proc exec tty", NULL) != 0) fatal("pledge failed"); /* Free stuff that is not used in the client. */ @@ -541,7 +541,7 @@ * get the first message from the server. */ if (!pledge_applied) { - if (0 && pledge("stdio unix proc exec tty", NULL) != 0) + if (pledge("stdio unix proc exec tty", NULL) != 0) fatal("pledge failed"); pledge_applied = 1; };