aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-12-22 12:13:34 +0100
committerEvan Huus <eapache@gmail.com>2014-12-22 15:24:28 +0000
commit5248c0df211e03f1c36e623a9f42efd53becd219 (patch)
tree4c1bfc1d5a182cc27d13522e379cc845b26733c8 /epan/dissectors
parented2df3beaf9b8a17ac5e9864a3b963b711216ff3 (diff)
Fix unknown command tag name [-Wdocumentation-unknown-command]
Change-Id: I6c2564a86e13d9321001856ba1f51681a9f20976 Reviewed-on: https://code.wireshark.org/review/5979 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-bacapp.c2
-rw-r--r--epan/dissectors/packet-c1222.c2
-rw-r--r--epan/dissectors/packet-ceph.c2
-rw-r--r--epan/dissectors/packet-eigrp.c2
-rw-r--r--epan/dissectors/packet-smpp.c4
-rw-r--r--epan/dissectors/packet-ucp.c6
6 files changed, 8 insertions, 10 deletions
diff --git a/epan/dissectors/packet-bacapp.c b/epan/dissectors/packet-bacapp.c
index 8c9d8b7ede..e0bfeb30ee 100644
--- a/epan/dissectors/packet-bacapp.c
+++ b/epan/dissectors/packet-bacapp.c
@@ -753,7 +753,7 @@ fReadPropertyMultipleRequest(tvbuff_t *tvb, packet_info *pinfo, proto_tree *subt
* listOfReadAccessResults SEQUENCE OF ReadAccessResult
* }
* @param tvb the tv buffer of the current data
- * @parma pinfo
+ * @param pinfo
* @param tree the tree to append this item to
* @param offset the offset in the tvb
* @return offset modified
diff --git a/epan/dissectors/packet-c1222.c b/epan/dissectors/packet-c1222.c
index 583b3bac91..7f2da409cc 100644
--- a/epan/dissectors/packet-c1222.c
+++ b/epan/dissectors/packet-c1222.c
@@ -756,7 +756,7 @@ get_ber_len_size(guint32 n)
*
* \param ptr points to the buffer to be written
* \param n is the length to be BER encoded
- * \maxsize is the maximum number of bytes we're allowed to write
+ * \param maxsize is the maximum number of bytes we're allowed to write
* \returns length of encoded value in bytes
*/
static int
diff --git a/epan/dissectors/packet-ceph.c b/epan/dissectors/packet-ceph.c
index 4b4c1b6867..eb335b5d27 100644
--- a/epan/dissectors/packet-ceph.c
+++ b/epan/dissectors/packet-ceph.c
@@ -31,7 +31,7 @@
void proto_reg_handoff_ceph(void);
void proto_register_ceph(void);
-/** Extending the Ceph Dissector.
+/* Extending the Ceph Dissector.
*
* Hello, this is a quick overview of the insertion points in the Ceph dissector
* it is assumed that you know how dissectors work in general (if not please
diff --git a/epan/dissectors/packet-eigrp.c b/epan/dissectors/packet-eigrp.c
index 9855ef4e3a..5453c3a681 100644
--- a/epan/dissectors/packet-eigrp.c
+++ b/epan/dissectors/packet-eigrp.c
@@ -648,7 +648,7 @@ static const value_string eigrp_saf_srv2string[] = {
* Dissect the Parameter TLV, which is used to convey metric weights and the
* hold time.
*
- * @usage
+ * @brief
* Note the addition of K6 for the new extended metrics, and does not apply to
* older TLV packet formats.
*/
diff --git a/epan/dissectors/packet-smpp.c b/epan/dissectors/packet-smpp.c
index bd4e00ce3e..f21d598da7 100644
--- a/epan/dissectors/packet-smpp.c
+++ b/epan/dissectors/packet-smpp.c
@@ -1149,9 +1149,7 @@ smpp_stats_tree_per_packet(stats_tree *st, /* st as it was passed to us */
* \param secs Returns the 'time_t' equivalent
* \param nsecs Returns the additional nano-seconds
*
- * \return Whether time is specified relative or absolute
- * \retval TRUE Relative time
- * \retval FALSE Absolute time
+ * \return Whether time is specified relative (TRUE) or absolute (FALSE)
*/
static gboolean
smpp_mktime(const char *datestr, time_t *secs, int *nsecs)
diff --git a/epan/dissectors/packet-ucp.c b/epan/dissectors/packet-ucp.c
index 7c8d080e47..2ff17dcbb1 100644
--- a/epan/dissectors/packet-ucp.c
+++ b/epan/dissectors/packet-ucp.c
@@ -710,9 +710,9 @@ ucp_stats_tree_per_packet(stats_tree *st, /* st as it was passed to us */
* \param endpkt Returns pointer, indicating the end of the PDU
*
* \return The state of this PDU
- * \retval 0 Definitely UCP
- * \retval UCP_MALFORMED ???
- * \retval UCP_INV_CHK Nice packet, but checksum doesn't add up...
+ * 0 Definitely UCP
+ * UCP_MALFORMED ???
+ * UCP_INV_CHK Nice packet, but checksum doesn't add up...
*/
static int
check_ucp(tvbuff_t *tvb, int *endpkt)