diff options
author | 2017-07-24 22:15:52 +0000 | |
---|---|---|
committer | 2017-07-24 22:15:52 +0000 | |
commit | 828e1b4ff267ba778822fb5a3f342b463b7374dc (patch) | |
tree | 8b087cccf320655b8965db7ae87b5ea87ae11526 | |
parent | add pcxrtc; (diff) | |
download | wireguard-openbsd-828e1b4ff267ba778822fb5a3f342b463b7374dc.tar.xz wireguard-openbsd-828e1b4ff267ba778822fb5a3f342b463b7374dc.zip |
Add < and > to the comment describind the grammar.
Picked in a diff from Klemens Nanni
-rw-r--r-- | bin/test/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/test/test.c b/bin/test/test.c index e6ef69c181f..ca88f4846dd 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: test.c,v 1.17 2017/01/21 11:03:42 krw Exp $ */ +/* $OpenBSD: test.c,v 1.18 2017/07/24 22:15:52 jca Exp $ */ /* $NetBSD: test.c,v 1.15 1995/03/21 07:04:06 cgd Exp $ */ /* @@ -33,8 +33,8 @@ unary-operator ::= "-r"|"-w"|"-x"|"-f"|"-d"|"-c"|"-b"|"-p"| "-u"|"-g"|"-k"|"-s"|"-t"|"-z"|"-n"|"-o"|"-O"|"-G"|"-L"|"-S"; - binary-operator ::= "="|"!="|"-eq"|"-ne"|"-ge"|"-gt"|"-le"|"-lt"| - "-nt"|"-ot"|"-ef"; + binary-operator ::= "="|"!="|"<"|">"|"-eq"|"-ne"|"-ge"|"-gt"| + "-le"|"-lt"|"-nt"|"-ot"|"-ef"; operand ::= <any legal UNIX file name> */ |