LOGIN-X-560: This utility could not find the label label.

Source:  LOGIN.EXE

Explanation:  The label used in the GOTO command was not found.

Possible Cause:  A common cause of this problem is shown in the following example:

IF FILE_SERVER = 911 THEN GOTO need_help

........

need_hep:

.......

.......

ENDIF

Note that need_help and the label need_hep are spelled differently; therefore, LOGIN cannot find the label specified by the GOTO command. Also, if the colon is left off the label name, LOGIN will not know that it is a label and will not find it.

Action:  Edit the login script. Make sure that the label is spelled correctly and that a colon follows the label name.

Previous | Next