refactor indentation with hard tab

This commit is contained in:
Francois Perrad
2015-12-31 15:59:01 +01:00
parent 4c4aa502d4
commit 23ac7f56fa
5 changed files with 21 additions and 21 deletions

View File

@@ -332,12 +332,12 @@ char* getpass_or_cancel(char* prompt)
char* password = NULL;
#ifdef DROPBEAR_PASSWORD_ENV
/* Password provided in an environment var */
password = getenv(DROPBEAR_PASSWORD_ENV);
if (password)
{
return password;
}
/* Password provided in an environment var */
password = getenv(DROPBEAR_PASSWORD_ENV);
if (password)
{
return password;
}
#endif
password = getpass(prompt);