diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2010-10-04 11:04:13 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2010-10-04 11:04:13 +0000 |
commit | ac7c3787b57eb772741d5e22d362a6b29a516c6f (patch) | |
tree | c86c043508cdbb61f8899bfc91341171effd2de4 /gtk/capture_dlg.c | |
parent | 6dc9a19a919934fcd779608e03ba11ad435419b4 (diff) | |
download | wireshark-ac7c3787b57eb772741d5e22d362a6b29a516c6f.tar.gz wireshark-ac7c3787b57eb772741d5e22d362a6b29a516c6f.tar.bz2 wireshark-ac7c3787b57eb772741d5e22d362a6b29a516c6f.zip |
Explain BPF in the tooltips for "Compile BPF".
svn path=/trunk/; revision=34363
Diffstat (limited to 'gtk/capture_dlg.c')
-rw-r--r-- | gtk/capture_dlg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_dlg.c b/gtk/capture_dlg.c index 27f200147d..b8f93df478 100644 --- a/gtk/capture_dlg.c +++ b/gtk/capture_dlg.c @@ -1961,7 +1961,7 @@ capture_prep_cb(GtkWidget *w _U_, gpointer d _U_) compile_bt = gtk_button_new_with_label("Compile BPF"); g_signal_connect(compile_bt, "clicked", G_CALLBACK(capture_filter_compile_cb), NULL); gtk_tooltips_set_tip(tooltips, compile_bt, - "Compile the capture filter expression and show the BPF code.", + "Compile the capture filter expression and show the BPF (Berkeley Packet Filter) code.", NULL); gtk_box_pack_start(GTK_BOX(filter_hb), compile_bt, FALSE, FALSE, 3); #endif |