Explain BPF in the tooltips for "Compile BPF".

svn path=/trunk/; revision=34363
This commit is contained in:
Stig Bjørlykke 2010-10-04 11:04:13 +00:00
parent 6dc9a19a91
commit ac7c3787b5
1 changed files with 1 additions and 1 deletions

View File

@ -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