Skip to content
Snippets Groups Projects
Commit 70f864b1 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't assign to unused variable

CID 433272
parent c2f808c1
No related branches found
No related tags found
No related merge requests found
...@@ -1036,7 +1036,7 @@ void sbbs_t::maindflts(user_t* user) ...@@ -1036,7 +1036,7 @@ void sbbs_t::maindflts(user_t* user)
if(!noyes(text[NewPasswordQ])) { if(!noyes(text[NewPasswordQ])) {
bputs(text[CurrentPassword]); bputs(text[CurrentPassword]);
console|=CON_R_ECHOX; console|=CON_R_ECHOX;
ch=(char)getstr(str,LEN_PASS,K_UPPER); getstr(str,LEN_PASS,K_UPPER);
console&=~(CON_R_ECHOX|CON_L_ECHOX); console&=~(CON_R_ECHOX|CON_L_ECHOX);
if(sys_status&SS_ABORT) if(sys_status&SS_ABORT)
break; break;
......
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