aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-05-18 05:19:22 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-05-18 05:19:22 +0000
commit21a7cb78685502db903fc2655efac55b69d5c56d (patch)
tree60d495ce541cd45e24c94fa6c40e97ae6f229ede
parent01ca09e597f8402dea227bf2cc021922a07a7c7a (diff)
From Albert Chin:
C++ comments in C source files (gtk/sctp_stat.c) svn path=/trunk/; revision=14391
-rw-r--r--gtk/sctp_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/sctp_stat.c b/gtk/sctp_stat.c
index 3d36e87166..e712d7cb62 100644
--- a/gtk/sctp_stat.c
+++ b/gtk/sctp_stat.c
@@ -1103,7 +1103,7 @@ packet(void *tapdata _U_, packet_info *pinfo , epan_dissect_t *edt _U_ , const v
info->error_info_list = g_list_append(info->error_info_list, error);
}
}
- } // endif (!info)
+ } /* endif (!info) */
else
{
if (((tvb_get_guint8(sctp_info->tvb[0],0)) == SCTP_INIT_CHUNK_ID) ||
@@ -1194,7 +1194,7 @@ packet(void *tapdata _U_, packet_info *pinfo , epan_dissect_t *edt _U_ , const v
info->max_tsn2 = tsnumber;
info->instream2 = tvb_get_ntohs(sctp_info->tvb[0],INIT_CHUNK_NUMBER_OF_INBOUND_STREAMS_OFFSET);
info->outstream2 = tvb_get_ntohs(sctp_info->tvb[0],INIT_CHUNK_NUMBER_OF_OUTBOUND_STREAMS_OFFSET);
- //info->initack_dir=2;
+ /*info->initack_dir=2;*/
info->tsn2 = g_list_prepend(info->tsn2, tsn);
}
else if (info->direction == 1)
@@ -1205,7 +1205,7 @@ packet(void *tapdata _U_, packet_info *pinfo , epan_dissect_t *edt _U_ , const v
info->max_tsn1 = tsnumber;
info->instream1 = tvb_get_ntohs(sctp_info->tvb[0],INIT_CHUNK_NUMBER_OF_INBOUND_STREAMS_OFFSET);
info->outstream1 = tvb_get_ntohs(sctp_info->tvb[0],INIT_CHUNK_NUMBER_OF_OUTBOUND_STREAMS_OFFSET);
- //info->initack_dir=1;
+ /*info->initack_dir=1;*/
info->tsn1 = g_list_prepend(info->tsn1, tsn);
}
info->chunk_count[tvb_get_guint8(sctp_info->tvb[0],0)]++;