summaryrefslogtreecommitdiff
path: root/source3/utils/net_conf.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2010-04-20 17:45:06 -0400
committerJim McDonough <jmcd@samba.org>2010-04-20 17:45:06 -0400
commit61bdffbf8e6789e7fbac3f0432840059fe98ab17 (patch)
treefbd23984ac03d0fd5ad7cf8c0e8683a50b9933ac /source3/utils/net_conf.c
parenta22f03e02c99c78642978c8e7a06ae92f97ad41f (diff)
downloadsamba-61bdffbf8e6789e7fbac3f0432840059fe98ab17.tar.gz
Fix i18n of net conf import error message.
Thanks gd
Diffstat (limited to 'source3/utils/net_conf.c')
-rw-r--r--source3/utils/net_conf.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c
index 1fc07e12fa9..6fc03bfd86b 100644
--- a/source3/utils/net_conf.c
+++ b/source3/utils/net_conf.c
@@ -229,9 +229,10 @@ static WERROR import_process_service(struct net_context *c,
service->param_names[idx],
service->param_values[idx]);
if (!W_ERROR_IS_OK(werr)) {
- d_printf("Error in section [%s], parameter \"%s\": %s\n",
- service->name, service->param_names[idx],
- win_errstr(werr));
+ d_fprintf(stderr,
+ _("Error in section [%s], parameter \"%s\": %s\n"),
+ service->name, service->param_names[idx],
+ win_errstr(werr));
goto done;
}
}