diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-12-09 07:24:57 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-12-09 07:24:57 +0000 |
commit | a32e34aa2685b87ba3d6e2ae0bbd1388259b24b7 (patch) | |
tree | 3d04d60a67cde471849f23158dd885a14ae8fece /bin/systrace/systrace.c | |
parent | 6f42ccbce41012b8903ef41f6dbcea306344b5f8 (diff) |
add support for regular expressions and pidname translations. from provos
Diffstat (limited to 'bin/systrace/systrace.c')
-rw-r--r-- | bin/systrace/systrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/systrace/systrace.c b/bin/systrace/systrace.c index e8129d4af77..50cf86bc90c 100644 --- a/bin/systrace/systrace.c +++ b/bin/systrace/systrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: systrace.c,v 1.39 2002/10/28 17:10:10 itojun Exp $ */ +/* $OpenBSD: systrace.c,v 1.40 2002/12/09 07:24:56 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -119,7 +119,7 @@ make_output(char *output, size_t outlen, const char *binname, TAILQ_FOREACH(tl, tls, next) { if (!tl->trans_valid) - break; + continue; line = intercept_translate_print(tl); if (line == NULL) continue; |