From 55dfb7e051966a0579f6843e9332619ea20bf17c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 25 Apr 2023 18:33:17 +0000 Subject: [PATCH] libssh2_priv.h: fix checksrc warning [ci skip] Regression from 9ef75298fae0728305d9d38ba1e3c838ad0513f7 --- src/libssh2_priv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libssh2_priv.h b/src/libssh2_priv.h index 7a2de85b..b3b65179 100644 --- a/src/libssh2_priv.h +++ b/src/libssh2_priv.h @@ -1212,9 +1212,9 @@ size_t plain_method(char *method, size_t method_len); #elif defined(__CYGWIN__) /* Cygwin has specific behavior we need to address when WIN32 is not defined. https://cygwin.com/cygwin-ug-net/using-textbinary.html - For write we want our output to have line endings of LF and be compatible with - other Cygwin utilities. For read we want to handle input that may have line - endings either CRLF or LF so 't' is appropriate. + For write we want our output to have line endings of LF and be compatible + with other Cygwin utilities. For read we want to handle input that may have + line endings either CRLF or LF so 't' is appropriate. */ #define FOPEN_READTEXT "rt" #define FOPEN_WRITETEXT "w"