diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/param/loadparm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9bb0ce1abb..58ead5bbf7 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -9624,6 +9624,11 @@ static bool lp_load_ex(const char *pszFname, DEBUG(1, ("WARNING: The security=server option is deprecated\n")); } + if (lp_security() == SEC_ADS && strchr(lp_passwordserver(), ':')) { + DEBUG(1, ("WARNING: The optional ':port' in password server = %s is deprecated\n", + lp_passwordserver())); + } + bLoaded = True; /* Now we check bWINSsupport and set szWINSserver to 127.0.0.1 */ |