From: guenther Date: Sun, 10 Aug 2014 00:21:49 +0000 (+0000) Subject: Add F_DUPFD_CLOEXEC handling X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=42aeb2373b012d1524984b44cefb5d3edb126f5f;p=openbsd Add F_DUPFD_CLOEXEC handling --- diff --git a/bin/systrace/systrace-translate.c b/bin/systrace/systrace-translate.c index 24c6296e9cc..ca6afdec094 100644 --- a/bin/systrace/systrace-translate.c +++ b/bin/systrace/systrace-translate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: systrace-translate.c,v 1.22 2007/06/06 15:14:49 henning Exp $ */ +/* $OpenBSD: systrace-translate.c,v 1.23 2014/08/10 00:21:49 guenther Exp $ */ /* * Copyright 2002 Niels Provos * All rights reserved. @@ -382,6 +382,9 @@ print_fcntlcmd(char *buf, size_t buflen, struct intercept_translate *tl) case F_DUPFD: name = "F_DUPFD"; break; + case F_DUPFD_CLOEXEC: + name = "F_DUPFD_CLOEXEC"; + break; case F_GETFD: name = "F_GETFD"; break;