From: Daniel Widrick Date: Tue, 24 Jun 2025 02:07:44 +0000 (-0400) Subject: s3:winbind: Correct spelling in debug messages related to ADS X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b9492ada40352213448a5050a187948c9d72ebc;p=thirdparty%2Fsamba.git s3:winbind: Correct spelling in debug messages related to ADS Corrected spelling of 'security' from 'secuirity' in debug messages related to ADS Signed-off-by: Daniel Widrick Reviewed-by: Martin Schwenke Reviewed-by: Andreas Schneider Reviewed-by: Anoop C S Autobuild-User(master): Anoop C S Autobuild-Date(master): Sat Jun 28 09:04:56 UTC 2025 on atb-devel-224 --- diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index fa150368fc6..209ca0dca92 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -1478,13 +1478,13 @@ int main(int argc, const char **argv) const char *workgroup = lp_workgroup(); if (workgroup == NULL || strlen(workgroup) == 0) { - DBG_ERR("For 'secuirity = ADS' mode, the 'workgroup' " + DBG_ERR("For 'security = ADS' mode, the 'workgroup' " "parameter is required to be set!\n"); exit(1); } if (realm == NULL || strlen(realm) == 0) { - DBG_ERR("For 'secuirity = ADS' mode, the 'realm' " + DBG_ERR("For 'security = ADS' mode, the 'realm' " "parameter is required to be set!\n"); exit(1); }