aboutsummaryrefslogtreecommitdiffstats
path: root/capture-wpcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-10-04 03:58:40 +0000
committerGuy Harris <guy@alum.mit.edu>2005-10-04 03:58:40 +0000
commit038cbce33531a0961413c17c605b5d8f0c554f46 (patch)
tree7146a0600097b06284bbc6d9b72f10364a5158f2 /capture-wpcap.c
parentead795c0e73d18b6f11d3aaa8cdcb1688c4c837b (diff)
Remove an extra " from a command, and fix indentation.
svn path=/trunk/; revision=16101
Diffstat (limited to 'capture-wpcap.c')
-rw-r--r--capture-wpcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/capture-wpcap.c b/capture-wpcap.c
index 3ccfeef4d3..d0a51ab367 100644
--- a/capture-wpcap.c
+++ b/capture-wpcap.c
@@ -638,7 +638,7 @@ get_runtime_pcap_version(GString *str)
else {
/*
* An alternative method of obtaining the version
- * number, by using the PacketLibraryVersion"
+ * number, by using the PacketLibraryVersion
* string from packet.dll.
*
* Unfortunately, in WinPcap 3.0, it returns
@@ -660,9 +660,9 @@ get_runtime_pcap_version(GString *str)
blankp = strchr(packetVer, ' ');
if (blankp != NULL)
*blankp = '\0';
- } else {
- packetVer = "version unknown";
- }
+ } else {
+ packetVer = "version unknown";
+ }
g_module_close(handle);
}
}