diff options
author | Nikolay Sturm <sturm@cvs.openbsd.org> | 2006-07-02 12:34:16 +0000 |
---|---|---|
committer | Nikolay Sturm <sturm@cvs.openbsd.org> | 2006-07-02 12:34:16 +0000 |
commit | 36207a330ccf1cae7cf91b22b4e4b123030ab8be (patch) | |
tree | 89d6f8534a819d485ce5c89a5adbe563f11df94a /bin/systrace/lex.l | |
parent | 7b13dfe1cf22c6103eb7dc6d10eef85c9ddcf53f (diff) |
sync with systrace 1.6d, keeping local changes
tests and feedback by a few
Diffstat (limited to 'bin/systrace/lex.l')
-rw-r--r-- | bin/systrace/lex.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l index 247dfd187a1..3d5511d2dcf 100644 --- a/bin/systrace/lex.l +++ b/bin/systrace/lex.l @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.l,v 1.17 2003/11/27 17:39:08 sturm Exp $ */ +/* $OpenBSD: lex.l,v 1.18 2006/07/02 12:34:15 sturm Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -137,8 +137,8 @@ as { return AS; } yylval.string = strdup(quotestr); return CMDSTRING; } else { - strlcat(quotestr, "\"", sizeof(quotestr)); - quoteescape = 0; + strlcat(quotestr, "\"", sizeof(quotestr)); + quoteescape = 0; } } \[ { return LSQBRACE; } |