Add F_DUPFD_CLOEXEC handling
authorguenther <guenther@openbsd.org>
Sun, 10 Aug 2014 00:21:49 +0000 (00:21 +0000)
committerguenther <guenther@openbsd.org>
Sun, 10 Aug 2014 00:21:49 +0000 (00:21 +0000)
bin/systrace/systrace-translate.c

index 24c6296..ca6afde 100644 (file)
@@ -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 <provos@citi.umich.edu>
  * 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;