- (stevesk) sftp-server.c: KNF

This commit is contained in:
Kevin Steves 2001-01-24 20:11:06 +00:00
parent b6b37ba475
commit f7ffab3ca8
1 changed files with 2 additions and 2 deletions

View File

@ -676,7 +676,7 @@ process_fsetstat(void)
TRACE("fsetstat id %d handle %d", id, handle);
fd = handle_to_fd(handle);
name = handle_to_name(handle);
if ((fd < 0) || (name == NULL)) {
if (fd < 0 || name == NULL) {
status = SSH2_FX_FAILURE;
} else {
if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {