aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/cli/tap-dcerpcstat.c4
-rw-r--r--ui/cli/tap-rpcstat.c2
-rw-r--r--ui/gtk/iax2_analysis.c2
-rw-r--r--ui/gtk/io_stat.c2
-rw-r--r--ui/gtk/memory_dlg.c2
-rw-r--r--ui/gtk/ncp_stat.c2
-rw-r--r--ui/gtk/rtp_analysis.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/ui/cli/tap-dcerpcstat.c b/ui/cli/tap-dcerpcstat.c
index b9345e81be..19535949e0 100644
--- a/ui/cli/tap-dcerpcstat.c
+++ b/ui/cli/tap-dcerpcstat.c
@@ -69,11 +69,11 @@ dcerpcstat_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt _U_, const
return 0;
}
if(!ri->call_data->req_frame){
- /* we have not seen the request so we dont know the delta*/
+ /* we have not seen the request so we don't know the delta*/
return 0;
}
if(ri->call_data->opnum>=rs->num_procedures){
- /* dont handle this since its outside of known table */
+ /* don't handle this since its outside of known table */
return 0;
}
diff --git a/ui/cli/tap-rpcstat.c b/ui/cli/tap-rpcstat.c
index 8cc1e2a898..6dc04986d1 100644
--- a/ui/cli/tap-rpcstat.c
+++ b/ui/cli/tap-rpcstat.c
@@ -128,7 +128,7 @@ rpcstat_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt _U_, const voi
rpc_procedure_t *rp;
if(ri->proc>=rs->num_procedures){
- /* dont handle this since its outside of known table */
+ /* don't handle this since its outside of known table */
return 0;
}
/* we are only interested in reply packets */
diff --git a/ui/gtk/iax2_analysis.c b/ui/gtk/iax2_analysis.c
index 2935f0f2f9..f3476fe1e0 100644
--- a/ui/gtk/iax2_analysis.c
+++ b/ui/gtk/iax2_analysis.c
@@ -1368,7 +1368,7 @@ dialog_graph_draw(user_data_t* user_data)
y_pos = draw_height-1 - (val*draw_height)/max_y + top_y_border;
}
- /* dont need to draw anything if the segment
+ /* don't need to draw anything if the segment
* is entirely above the top of the graph
*/
if ( (prev_y_pos == 0) && (y_pos == 0) ) {
diff --git a/ui/gtk/io_stat.c b/ui/gtk/io_stat.c
index 09755260bd..9182872198 100644
--- a/ui/gtk/io_stat.c
+++ b/ui/gtk/io_stat.c
@@ -977,7 +977,7 @@ io_stat_draw(io_stat_t *io)
switch (io->graphs[i].plot_style) {
case PLOT_STYLE_LINE:
- /* Dont draw anything if the segment entirely above the top of the graph
+ /* Don't draw anything if the segment entirely above the top of the graph
*/
if ( (prev_y_pos != 0) || (y_pos != 0) ) {
cairo_move_to(cr, prev_x_pos+0.5, prev_y_pos+0.5);
diff --git a/ui/gtk/memory_dlg.c b/ui/gtk/memory_dlg.c
index 21bb1a73fa..357b694532 100644
--- a/ui/gtk/memory_dlg.c
+++ b/ui/gtk/memory_dlg.c
@@ -386,7 +386,7 @@ io_stat_draw(io_stat_t *io)
top_y_border);
}
- /* Dont draw anything if the segment entirely above the top of the graph
+ /* Don't draw anything if the segment entirely above the top of the graph
*/
if ( (prev_y_pos != 0) || (y_pos != 0) ) {
static GdkRGBA red_color = {1.0, 0.0, 0.1, 1.0};
diff --git a/ui/gtk/ncp_stat.c b/ui/gtk/ncp_stat.c
index e8ed0a44e1..63a44a89b3 100644
--- a/ui/gtk/ncp_stat.c
+++ b/ui/gtk/ncp_stat.c
@@ -303,7 +303,7 @@ ncpstat_packet(void *pss, packet_info *pinfo, epan_dissect_t *edt _U_, const voi
ncpstat_t *ss=(ncpstat_t *)pss;
const ncp_req_hash_value *request_val=(const ncp_req_hash_value *)prv;
- /* if we havent seen the request, just ignore it */
+ /* if we haven't seen the request, just ignore it */
if(!request_val || request_val->ncp_rec==0){
return 0;
}
diff --git a/ui/gtk/rtp_analysis.c b/ui/gtk/rtp_analysis.c
index 14e91ae6df..d282f9fbb1 100644
--- a/ui/gtk/rtp_analysis.c
+++ b/ui/gtk/rtp_analysis.c
@@ -1423,7 +1423,7 @@ dialog_graph_draw(user_data_t* user_data)
y_pos = draw_height - 1 - (val*draw_height)/max_y + top_y_border;
}
- /* dont need to draw anything if the segment
+ /* don't need to draw anything if the segment
* is entirely above the top of the graph
*/
if ( (prev_y_pos == 0) && (y_pos == 0) ) {