diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-28 15:25:49 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-28 15:25:49 -0400 |
commit | 8e1b897f0ae8a228799058153e9dda0a18aeb4c1 (patch) | |
tree | 3a99209553868b39808d95e542b47eaddec635c6 /node | |
parent | 3745377872fe89cc06fb08de9b998c64c31e765c (diff) | |
download | infinitytier-8e1b897f0ae8a228799058153e9dda0a18aeb4c1.tar.gz infinitytier-8e1b897f0ae8a228799058153e9dda0a18aeb4c1.zip |
Add etherTypes to netconf response.
Diffstat (limited to 'node')
-rw-r--r-- | node/Filter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Filter.cpp b/node/Filter.cpp index d41589d6..75a7036a 100644 --- a/node/Filter.cpp +++ b/node/Filter.cpp @@ -263,7 +263,7 @@ Filter::Filter(const char *s) throw std::invalid_argument("filter string too long"); char *saveptr = (char *)0; unsigned int fn = 0; - for(char *f=Utils::stok(tmp,"-",&saveptr);(f);f=Utils::stok((char *)0,"-",&saveptr)) { + for(char *f=Utils::stok(tmp,",",&saveptr);(f);f=Utils::stok((char *)0,",",&saveptr)) { try { _rules.push_back(Rule(f)); ++fn; |