aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-socks.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-20 00:09:02 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-20 00:09:02 +0000
commit1a6d2f5c40aa297b8253e0e40db6171a9cfebf84 (patch)
treefa7369f1e31dc5b2b27473e8b675c1352a9e85ad /epan/dissectors/packet-socks.c
parentc4d86daa36a24effa65d16f68f97f774dcc2219d (diff)
Fix various typos and spelling errors (mostly in text strings)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27065 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-socks.c')
-rw-r--r--epan/dissectors/packet-socks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-socks.c b/epan/dissectors/packet-socks.c
index 1f06edf5a3..e05155e7ba 100644
--- a/epan/dissectors/packet-socks.c
+++ b/epan/dissectors/packet-socks.c
@@ -225,7 +225,7 @@ static const value_string reply_table_v5[] = {
};
static const value_string cmd_strings[] = {
- {0, "Unknow"},
+ {0, "Unknown"},
{1, "Connect"},
{2, "Bind"},
{3, "UdpAssociate"},
@@ -300,7 +300,7 @@ static const char *get_command_name( guint Number){
/* return the name of the command as a string */
- if ( Number == 0) return "Unknow";
+ if ( Number == 0) return "Unknown";
if ( Number == 1) return "Connect";
if ( Number == 2) return "Bind";
if ( Number == 3) return "UdpAssociate";
@@ -874,7 +874,7 @@ state_machine_v5( socks_hash_entry_t *hash_info, tvbuff_t *tvb,
if (!pinfo->fd->flags.visited)
new_udp_conversation( hash_info, pinfo);
-/*XXX may need else statement to handle unknows and generate error message */
+/*XXX may need else statement to handle unknowns and generate error message */
}
}