aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-01-05 00:58:33 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-01-05 00:58:33 +0000
commitadcd1caf92001ebaa397809a2d1f307b87cb1053 (patch)
tree89bc619a49044ed6ccd3f3de8b39d8f70743b46c /fetchmail.c
parentd7295cb5547369aa466c226d2c5672aa3a941c84 (diff)
downloadfetchmail-adcd1caf92001ebaa397809a2d1f307b87cb1053.tar.gz
fetchmail-adcd1caf92001ebaa397809a2d1f307b87cb1053.tar.bz2
fetchmail-adcd1caf92001ebaa397809a2d1f307b87cb1053.zip
Fix the localdomain problem.
svn path=/trunk/; revision=2324
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 766f78e1..9edc1600 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -149,8 +149,8 @@ int main (int argc, char **argv)
envquery(argc, argv);
#ifdef ENABLE_NLS
- bindtextdomain("fetchmail", "/usr/share/locale");
- textdomain("fetchmail");
+ bindtextdomain(PACKAGE, LOCALEDIR);
+ textdomain(PACKAGE);
#endif
#define IDFILE_NAME ".fetchids"