aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-27 02:40:05 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-27 02:40:05 +0000
commit1d3e8ddbd32ffa0023a4e4f6f855c24b4ef24e45 (patch)
treec2d906f7d0973b3c46d378e7bb6e92b1bea5b3b6 /plugins
parent729749c5b9887fcc28896f8e7ae455baf5b6f5f6 (diff)
bugfix of a bug causing tethereal value output to fail:
value_string's must be terminated with { 0, NULL }!!! ...seems I've missed one place in my last commit! svn path=/trunk/; revision=13930
Diffstat (limited to 'plugins')
-rw-r--r--plugins/agentx/packet-agentx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/agentx/packet-agentx.c b/plugins/agentx/packet-agentx.c
index 80c65fcb7e..54091e3127 100644
--- a/plugins/agentx/packet-agentx.c
+++ b/plugins/agentx/packet-agentx.c
@@ -277,6 +277,7 @@ static const value_string resp_errors[] = {
{ AGENTX_DUP_REGISTR, "duplicateRegistration" },
{ AGENTX_UNKNOWN_REG, "unknownRegistration" },
{ AGENTX_UNKNOWN_CAPS, "unknownAgentCaps" },
+ { 0, NULL }
};