Skip to content

Commit

Permalink
Remove an extra " from a command, and fix indentation.
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=16101
  • Loading branch information
guyharris committed Oct 4, 2005
1 parent ead795c commit 038cbce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions capture-wpcap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
}
}
Expand Down

0 comments on commit 038cbce

Please sign in to comment.