1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-08 03:42:12 +03:00

misc: Fix formatting

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Sahana Prasad <sahana@redhat.com>
Reviewed-by: Eshan Kelkar <eshankelkar@galorithm.com>
This commit is contained in:
Jakub Jelen
2024-07-16 15:13:25 +02:00
committed by Sahana Prasad
parent 9ddde3803e
commit 325ea6dc40

View File

@@ -2089,7 +2089,7 @@ ssize_t ssh_writen(int fd, const void *buf, size_t nbytes)
((const char *)buf) + total_bytes_written,
nbytes - total_bytes_written);
if (bytes_written == -1) {
if(errno == EINTR) {
if (errno == EINTR) {
/* Ignoring errors due to signal interrupts */
continue;
}