Skip to content
Snippets Groups Projects
Commit 51e00645 authored by rswindell's avatar rswindell
Browse files

The "low priority string input" option hasn't been used since v3.10.

parent 602d1968
No related branches found
No related tags found
No related merge requests found
......@@ -216,8 +216,10 @@ Options with a trailing ... will produce a sub-menu of more options.
done=0;
while(!done) {
i=0;
#if 0 /* no longer used */
sprintf(opt[i++],"%-27.27s%s","Low Priority String Input"
,cfg.node_misc&NM_LOWPRIO ? "Yes":"No");
#endif
sprintf(opt[i++],"%-27.27s%s","Allow Login by User Number"
,cfg.node_misc&NM_NO_NUM ? "No":"Yes");
sprintf(opt[i++],"%-27.27s%s","Allow Login by Real Name"
......@@ -247,6 +249,7 @@ more states, such as Yes and No.
case -1:
done=1;
break;
#if 0 /* no longer used */
case 0:
i=cfg.node_misc&NM_LOWPRIO ? 0:1;
strcpy(opt[0],"Yes");
......@@ -274,7 +277,8 @@ user, but improving aggregate system performance under multitaskers.
cfg.node_misc&=~NM_LOWPRIO;
uifc.changes=1; }
break;
case 1:
#endif
case 0:
i=cfg.node_misc&NM_NO_NUM ? 1:0;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......@@ -296,7 +300,7 @@ set this option to Yes.
cfg.node_misc|=NM_NO_NUM;
uifc.changes=1; }
break;
case 2:
case 1:
i=cfg.node_misc&NM_LOGON_R ? 0:1;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......@@ -318,7 +322,7 @@ their alias, set this option to Yes.
cfg.node_misc&=~NM_LOGON_R;
uifc.changes=1; }
break;
case 3:
case 2:
i=cfg.node_misc&NM_LOGON_P ? 0:1;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......@@ -340,7 +344,7 @@ prompt for a password, set this option to Yes.
cfg.node_misc&=~NM_LOGON_P;
uifc.changes=1; }
break;
case 4:
case 3:
i=cfg.node_misc&NM_7BITONLY ? 0:1;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......@@ -363,7 +367,7 @@ to send IBM extended ASCII characters during the login sequence.
cfg.node_misc&=~NM_7BITONLY;
uifc.changes=1; }
break;
case 5:
case 4:
i=cfg.node_misc&NM_NOPAUSESPIN ? 1:0;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......@@ -385,7 +389,7 @@ this option to Yes.
cfg.node_misc|=NM_NOPAUSESPIN;
uifc.changes=1; }
break;
case 6:
case 5:
i=cfg.node_misc&NM_CLOSENODEDAB ? 1:0;
strcpy(opt[0],"Yes");
strcpy(opt[1],"No");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment