Displaying 2 results from an estimated 2 matches for "szwinsserver".
2000 Jan 27
0
service_ok, redux.
...in roughly decreasing order of severity, */
> /* starting with globals. */
>
> if (globalCheck == True)
> {
> globalCheck = False; /* Only check once. */
>
> /* Check for both wins server and wins support, make sure server wins. */
> if (Globals.szWINSserver[0] != '\0' && Globals.bWINSsupport == True)
> {
> DEBUG(0,( "ERROR: both wins server and wins support turned on, "
> "using wins server \"%s\".\n", Globals.szWINSserver));
> Globals.bWINSsupport = False;
> }
>...
2000 Jan 27
1
Proposed improvements to service_ok()
...in roughly decreasing order of severity, */
> /* starting with globals. */
>
> if (globalCheck == True)
> {
> globalCheck = False; /* Only check once. */
>
> /* Check for both wins server and wins support, make sure server wins. */
> if (Globals.szWINSserver != '\0' && Globals.bWINSsupport == True)
> {
> DEBUG(0,( "ERROR: both wins server and wins support turned on, "
> "using wins server \"%s\".\n", Globals.szWINSserver));
> Globals.bWINSsupport = False;
> }
>...