Remove useless cast. No funtional changes.
This commit is contained in:
parent
9e08f17fd3
commit
06c326fc5f
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ login(int s, char *uname, char *cname, char *cpass, int kill_proc)
|
|||
}
|
||||
if (cpass == NULL) {
|
||||
#ifndef _WIN32
|
||||
cpass = (char *)getpass("Your name? ");
|
||||
cpass = getpass("Your name? ");
|
||||
if (cpass == NULL || *cpass == 0)
|
||||
return 0;
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue