1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

s3:utils: Fix code spelling

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-02 14:54:17 +12:00 committed by Andrew Bartlett
parent a30b6d1eb7
commit 88acf7de08
3 changed files with 3 additions and 3 deletions

View File

@ -937,7 +937,7 @@ msgstr ""
#: ../../utils/net_ads.c:1093
#, c-format
msgid "realm must be set in in %s for ADS join to succeed.\n"
msgid "realm must be set in %s for ADS join to succeed.\n"
msgstr ""
#: ../../utils/net_ads.c:1126

View File

@ -1675,7 +1675,7 @@ static WERROR check_ads_config( void )
}
if ( lp_security() == SEC_ADS && !*lp_realm()) {
d_fprintf(stderr, _("realm must be set in in %s for ADS "
d_fprintf(stderr, _("realm must be set in %s for ADS "
"join to succeed.\n"), get_dyn_CONFIGFILE());
return WERR_INVALID_PARAMETER;
}

View File

@ -53,7 +53,7 @@ static WERROR check_ads_config(struct loadparm_context *lp_ctx)
}
if ( lpcfg_security(lp_ctx) == SEC_ADS && !*lpcfg_realm(lp_ctx)) {
d_fprintf(stderr, _("realm must be set in in %s for ADS "
d_fprintf(stderr, _("realm must be set in %s for ADS "
"join to succeed.\n"), get_dyn_CONFIGFILE());
return WERR_INVALID_PARAMETER;
}