![]() |
LOGIN-X-340: IF statements are nested too deeply. The nesting limit is number levels.
Source: LOGIN.EXE
Explanation: The login script can have unlimited IF statements, but the login script is limited to number of nested IF statements indicated in the message.
Example of four levels of nested IF statements:
IF........
IF.........
IF.......
IF.....
......
ENDIF
ENDIF
ENDIF
ENDIF
Action: Where possible, take the IF statements out of the nested format and placing them after the sequence of nested IF statements.
![]() |