aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gprs-ns.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-18 10:11:52 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-18 10:11:52 +0000
commit40ba0d72bc580bd0f9ba908fb3fc93d13558b559 (patch)
tree9c454cc39449486a445275000e41eec9baa0049d /packet-gprs-ns.c
parentd3a22200f439863b11f5058e0e28259e2b6c92e4 (diff)
Newlines don't belong in format strings for the "proto_tree_add"
routines. svn path=/trunk/; revision=10094
Diffstat (limited to 'packet-gprs-ns.c')
-rw-r--r--packet-gprs-ns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-gprs-ns.c b/packet-gprs-ns.c
index 7a1a21aecf..5c7b4a59de 100644
--- a/packet-gprs-ns.c
+++ b/packet-gprs-ns.c
@@ -3,7 +3,7 @@
* dissection
* Copyright 2003, Josef Korelus <jkor@quick.cz>
*
- * $Id: packet-gprs-ns.c,v 1.7 2003/11/14 18:59:00 guy Exp $
+ * $Id: packet-gprs-ns.c,v 1.8 2004/02/18 10:11:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -154,7 +154,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad cause length %u, should be 1\n",
+ "Bad cause length %u, should be 1",
length);
}
}
@@ -176,7 +176,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad NS-VCI length %u, should be 2\n",
+ "Bad NS-VCI length %u, should be 2",
length);
}
}
@@ -210,7 +210,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad BVCI length %u, should be 2\n",
+ "Bad BVCI length %u, should be 2",
length);
}
}
@@ -232,7 +232,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad NSEI length %u, should be 2\n",
+ "Bad NSEI length %u, should be 2",
length);
}
}