diff options
author | Jim McDonough <jmcd@samba.org> | 2010-04-20 17:45:06 -0400 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2010-04-20 17:45:06 -0400 |
commit | 61bdffbf8e6789e7fbac3f0432840059fe98ab17 (patch) | |
tree | fbd23984ac03d0fd5ad7cf8c0e8683a50b9933ac /source3 | |
parent | a22f03e02c99c78642978c8e7a06ae92f97ad41f (diff) | |
download | samba-61bdffbf8e6789e7fbac3f0432840059fe98ab17.tar.gz samba-61bdffbf8e6789e7fbac3f0432840059fe98ab17.tar.bz2 samba-61bdffbf8e6789e7fbac3f0432840059fe98ab17.zip |
Fix i18n of net conf import error message.
Thanks gd
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_conf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 1fc07e12fa..6fc03bfd86 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; } } |