aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/gcp.c4
-rw-r--r--epan/gcp.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/epan/gcp.c b/epan/gcp.c
index bf2a087480..5ffe6a04b5 100644
--- a/epan/gcp.c
+++ b/epan/gcp.c
@@ -562,6 +562,10 @@ gchar* gcp_cmd_to_str(gcp_cmd_t* c, gboolean persistent) {
case GCP_CMD_REPLY:
s = "ActionReply {";
break;
+ case GCP_CMD_OTHER_REQ:
+ s = "Request {";
+ break;
+
}
for (term = c->terms.next; term; term = term->next) {
diff --git a/epan/gcp.h b/epan/gcp.h
index 4b8e5df430..49b52a7a8c 100644
--- a/epan/gcp.h
+++ b/epan/gcp.h
@@ -73,6 +73,7 @@ typedef struct _gcp_hf_ett_t {
typedef enum {
GCP_CMD_NONE,
+ GCP_CMD_OTHER_REQ,
GCP_CMD_ADD_REQ,
GCP_CMD_MOVE_REQ,
GCP_CMD_MOD_REQ,