Skip to content

Commit b4ff2fd

Browse files
committed
server session REFACTOR formatting
1 parent b639e9c commit b4ff2fd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/session_server_ssh.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -692,11 +692,11 @@ auth_password_get_pwd_hash(const char *username)
692692
}
693693

694694
if (!strcmp(pwd->pw_passwd, "x")) {
695-
#ifndef __QNXNTO__
696-
getspnam_r(username, &spwd_buf, buf, 256, &spwd);
697-
#else
698-
spwd = getspnam_r(username, &spwd_buf, buf, 256);
699-
#endif
695+
# ifndef __QNXNTO__
696+
getspnam_r(username, &spwd_buf, buf, 256, &spwd);
697+
# else
698+
spwd = getspnam_r(username, &spwd_buf, buf, 256);
699+
# endif
700700
if (!spwd) {
701701
VRB("Failed to retrieve the shadow entry for \"%s\".", username);
702702
return NULL;

0 commit comments

Comments
 (0)