diff options
author | Arnavion <arnavion@gmail.com> | 2015-01-18 02:10:05 -0800 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2015-01-18 02:10:05 -0800 |
commit | d1897c1602bf4ac632ef299583ceedf48066079e (patch) | |
tree | bd6de5ec90dda1ca6c8ce7f09bb9134eb6e71f55 /src/common | |
parent | 6f8a6e66ccf013e7afe46bd19580d9300047a9ea (diff) |
Remove "System default" encoding. The default for new servers is UTF-8.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/servlist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/servlist.c b/src/common/servlist.c index 2ce64d13..9b509ee3 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -1342,8 +1342,7 @@ servlist_save (void) fprintf (fp, "P=%s\n", net->pass); if (net->logintype) fprintf (fp, "L=%d\n", net->logintype); - if (net->encoding && g_ascii_strcasecmp (net->encoding, "System") && - g_ascii_strcasecmp (net->encoding, "System default")) + if (net->encoding) { fprintf (fp, "E=%s\n", net->encoding); if (!servlist_check_encoding (net->encoding)) |