mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Remove un-needed braces around single statements.
This commit is contained in:
@@ -48,9 +48,7 @@ verify_password(char *auth_arg, char *user, char *password)
|
||||
test_pw = strtok(NULL, ":");
|
||||
if (!test_user || !test_pw ||
|
||||
test_user[0] == '\0' || test_pw[0] == '\0')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
/* kill the newline */
|
||||
if (test_pw[strlen(test_pw) - 1] == '\n')
|
||||
|
Reference in New Issue
Block a user