diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-03-12 15:10:29 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-03-12 22:10:53 +0000 |
commit | c8b6b7699635cd5f9039d6a90d2267ac06e205c5 (patch) | |
tree | 33e4d826fbc893774248851bb5cbf2fa7f01420e /plugins/gryphon/packet-gryphon.c | |
parent | 0284e87bea177188343d3ce9ebdfe2ec0d4044b7 (diff) | |
download | wireshark-c8b6b7699635cd5f9039d6a90d2267ac06e205c5.tar.gz wireshark-c8b6b7699635cd5f9039d6a90d2267ac06e205c5.tar.bz2 wireshark-c8b6b7699635cd5f9039d6a90d2267ac06e205c5.zip |
Thou shalt not put newlines in the strings in value_string tables.
That just breaks too many things.
This catches the examples of that found in bug 9878. There might be
others that my grepping didn't find.
We should also have the checkAPIs.pl script check for this, so this
isn't a full fix for bug 9878.
Change-Id: I3bf6f1fc0fe8654d0f54a995e72f1966ae012f5e
Reviewed-on: https://code.wireshark.org/review/623
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'plugins/gryphon/packet-gryphon.c')
-rw-r--r-- | plugins/gryphon/packet-gryphon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gryphon/packet-gryphon.c b/plugins/gryphon/packet-gryphon.c index 2bcb95bc42..eaea3751d1 100644 --- a/plugins/gryphon/packet-gryphon.c +++ b/plugins/gryphon/packet-gryphon.c @@ -312,7 +312,7 @@ static const value_string action_vals[] = { { FR_RESP_AFTER_PERIOD, "Send response(s) after the specified period expires following a conforming message" }, { FR_IGNORE_DURING_PER, - "Send response(s) for a conforming message and ignore\nfurther messages until the specified period expires" }, + "Send response(s) for a conforming message and ignore further messages until the specified period expires" }, { 0, NULL } }; |