diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-13 15:13:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-13 15:51:52 +1000 |
commit | d309499b9e268bff5e366a9986528f0accbc02b3 (patch) | |
tree | 89f28cfdc5e4a67980cef1bd9bb64a943018f2db /source3/utils | |
parent | 887fdb7ba126f280682699d19bcc2931e9c3602d (diff) | |
download | samba-d309499b9e268bff5e366a9986528f0accbc02b3.tar.gz samba-d309499b9e268bff5e366a9986528f0accbc02b3.tar.bz2 samba-d309499b9e268bff5e366a9986528f0accbc02b3.zip |
s3-build Remove distinct LOCALEDIR subsystem
This is no different to the rest of dynconfig, and so should be dealt
with there.
Andrew Bartlett
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net.c | 2 | ||||
-rw-r--r-- | source3/utils/net.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 7ade3070e7..c53b2859b0 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -832,7 +832,7 @@ static struct functable net_func[] = { setlocale(LC_ALL, ""); #if defined(HAVE_BINDTEXTDOMAIN) - bindtextdomain(MODULE_NAME, dyn_LOCALEDIR); + bindtextdomain(MODULE_NAME, get_dyn_LOCALEDIR()); #endif #if defined(HAVE_TEXTDOMAIN) textdomain(MODULE_NAME); diff --git a/source3/utils/net.h b/source3/utils/net.h index 7ac3b5c6bd..ac43068c12 100644 --- a/source3/utils/net.h +++ b/source3/utils/net.h @@ -22,7 +22,6 @@ * include */ -#include "localedir.h" #include "../librpc/gen_ndr/lsa.h" #include "intl.h" |