From 22a6e96545aaf17b3f4af7d84ee1e157e46c4c01 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 22 Mar 2014 15:11:49 +0100 Subject: [PATCH] grammar: Parse the cnonce properly The rules are concatinaions and not alternatives.. --- grammar/SIPGrammar.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar/SIPGrammar.st b/grammar/SIPGrammar.st index 4c7bf07..7fb5f44 100644 --- a/grammar/SIPGrammar.st +++ b/grammar/SIPGrammar.st @@ -548,7 +548,7 @@ PP.PPCompositeParser subclass: SIPGrammar [ cnonce [ - ^'cnonce' asParser / EQUAL / self nonce_value + ^'cnonce' asParser, EQUAL, self nonce_value ] nonce_count [