1
1

getpass: Fixed a compiler warning.

Этот коммит содержится в:
Andreas Schneider 2011-02-05 11:13:41 +01:00
родитель 867944b939
Коммит 4b07157fc6

Просмотреть файл

@ -60,7 +60,9 @@ static int ssh_gets(const char *prompt, char *buf, size_t len, int verify) {
fprintf(stdout, "%s", prompt);
}
fflush(stdout);
fgets(tmp, len, stdin);
if (fgets(tmp, len, stdin) == NULL) {
return 0;
}
if ((ptr = strchr(tmp, '\n'))) {
*ptr = '\0';