diff options
author | Matt Zimmerman <matt.zimmerman@canonical.com> | 2004-11-27 22:11:03 +0000 |
---|---|---|
committer | Matt Zimmerman <matt.zimmerman@canonical.com> | 2004-11-27 22:11:03 +0000 |
commit | b25423f6636a17f61a50ea03ad6bda42125f0323 (patch) | |
tree | 58eb307a6a7743dd4e55902646f9c6a1b8d52330 /methods/gzip.cc | |
parent | f09ed20d3c489419d920f9a27149f4da8ca22f36 (diff) |
Call setlocale in all methods, don't call bindtextdomain in http
Diffstat (limited to 'methods/gzip.cc')
-rw-r--r-- | methods/gzip.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/methods/gzip.cc b/methods/gzip.cc index af1ac465e..ac64f33f8 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -154,6 +154,8 @@ bool GzipMethod::Fetch(FetchItem *Itm) int main(int argc, char *argv[]) { + setlocale(LC_ALL, ""); + GzipMethod Mth; Prog = strrchr(argv[0],'/'); |