summaryrefslogtreecommitdiff
path: root/tools/wispr.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-11-21 20:03:03 +0100
committerMarcel Holtmann <marcel@holtmann.org>2010-11-21 20:03:03 +0100
commitd4375251801eb58f26c4308ac250e572824e8330 (patch)
tree6d9e7d8f2c8ba5ebb564ca4f7ef9bd483829d5cd /tools/wispr.c
parent3b1ff1b979f88205c81025e007358128479bf58b (diff)
downloadconnman-d4375251801eb58f26c4308ac250e572824e8330.tar.gz
connman-d4375251801eb58f26c4308ac250e572824e8330.tar.bz2
connman-d4375251801eb58f26c4308ac250e572824e8330.zip
Add missing break statement to WISPr client
Diffstat (limited to 'tools/wispr.c')
-rw-r--r--tools/wispr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/wispr.c b/tools/wispr.c
index bfbdeb4c..7193651b 100644
--- a/tools/wispr.c
+++ b/tools/wispr.c
@@ -223,9 +223,11 @@ static void text_handler(GMarkupParseContext *context,
case WISPR_ELEMENT_ACCESS_PROCEDURE:
g_free(msg->access_procedure);
msg->access_procedure = g_strdup(text);
+ break;
case WISPR_ELEMENT_ACCESS_LOCATION:
g_free(msg->access_location);
msg->access_location = g_strdup(text);
+ break;
case WISPR_ELEMENT_LOCATION_NAME:
g_free(msg->location_name);
msg->location_name = g_strdup(text);