Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KIO Extras
Commits
6134b87b
Commit
6134b87b
authored
Oct 08, 2021
by
Harald Sitter
🏳️🌈
Browse files
sftp: don't declare multiple vars in the same line
it's poor form and gets in the way of readability
parent
92babb9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
sftp/kio_sftp.cpp
View file @
6134b87b
...
...
@@ -583,7 +583,8 @@ Result SFTPInternal::sftpOpenConnection(const AuthInfo &info)
return
Result
::
fail
(
KIO
::
ERR_OUT_OF_MEMORY
,
i18n
(
"Could not create a new SSH session."
));
}
long
timeout_sec
=
30
,
timeout_usec
=
0
;
const
long
timeout_sec
=
30
;
const
long
timeout_usec
=
0
;
qCDebug
(
KIO_SFTP_LOG
)
<<
"Creating the SSH session and setting options"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment