Skip to content

Commit

Permalink
Add .pcapng to open file dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
tfarley committed Feb 6, 2017
1 parent 0048337 commit 113ef77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aclogview/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private void Form1_Load(object sender, EventArgs e) {
private void menuItem5_Click(object sender, EventArgs e) {
OpenFileDialog openFile = new OpenFileDialog();
openFile.AddExtension = true;
openFile.Filter = "Packet Captures (*.pcap)|*.pcap|All Files (*.*)|*.*";
openFile.Filter = "Packet Captures (*.pcap;*.pcapng)|*.pcap;*.pcapng|All Files (*.*)|*.*";

if (openFile.ShowDialog() != DialogResult.OK) {
return;
Expand Down

0 comments on commit 113ef77

Please sign in to comment.