aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-25 20:01:13 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-25 20:01:13 +0000
commitf4bbdc9bc3aff4f1a9dd9c6c87bd7c531ed138f9 (patch)
treec771b3acb64dca054af6c6eb6bf3b1dd47264d6d /packet-smb.c
parentc9360c715fa0e87b02d74b336b8b9b1cff7d1628 (diff)
The Cygwin "winnls.h" header, and the Microsoft "winnls.h" headers, says
that a country code of 0 is for the "default", presumably meaning "don't override the setting on the desktop machine" or something such as that. svn path=/trunk/; revision=5015
Diffstat (limited to 'packet-smb.c')
-rw-r--r--packet-smb.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 18683df347..e70d63662d 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -3,7 +3,7 @@
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
* 2001 Rewrite by Ronnie Sahlberg and Guy Harris
*
- * $Id: packet-smb.c,v 1.234 2002/03/20 07:55:51 guy Exp $
+ * $Id: packet-smb.c,v 1.235 2002/03/25 20:01:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -13024,13 +13024,18 @@ static char *decode_smb_error(guint8 errcls, guint16 errcode)
}
-/* These are the MS country codes from www.unicode.org/unicode/onlinedat/countries.html
- For countries that share teh same number I choose to use only the name of the largest
- country. Appologies for this. If this offends you, here is the table to change that.
+/* These are the MS country codes from
+
+ http://www.unicode.org/unicode/onlinedat/countries.html
+
+ For countries that share the same number, I choose to use only the
+ name of the largest country. Apologies for this. If this offends you,
+ here is the table to change that.
There might be more info in winnls.h for those that have wincompilers
*/
const value_string ms_country_codes[] = {
+ { 0, "Default"},
{ 1, "USA"},
{ 2, "Canada"},
{ 7, "Russia"},