@@ -895,10 +895,12 @@ WOLFSSL_API void wolfSSL_SetIOWriteFlags(WOLFSSL* ssl, int flags);
895895
896896#ifndef XINET_NTOP
897897 #if defined(__WATCOMC__ )
898- #if defined(__OS2__ ) || defined(__NT__ ) && (NTDDI_VERSION >= NTDDI_VISTA )
898+ #if defined(__OS2__ ) || defined(__NT__ ) && \
899+ (NTDDI_VERSION >= NTDDI_VISTA )
899900 #define XINET_NTOP (a ,b ,c ,d ) inet_ntop((a),(b),(c),(d))
900901 #else
901- #define XINET_NTOP (a ,b ,c ,d ) strncpy((c),inet_ntoa(*(unsigned *)(b)),(d))
902+ #define XINET_NTOP (a ,b ,c ,d ) \
903+ strncpy((c),inet_ntoa(*(unsigned *)(b)),(d))
902904 #endif
903905 #elif defined(USE_WINDOWS_API ) /* Windows-friendly definition */
904906 #define XINET_NTOP (a ,b ,c ,d ) InetNtop((a),(b),(c),(d))
@@ -908,7 +910,8 @@ WOLFSSL_API void wolfSSL_SetIOWriteFlags(WOLFSSL* ssl, int flags);
908910#endif
909911#ifndef XINET_PTON
910912 #if defined(__WATCOMC__ )
911- #if defined(__OS2__ ) || defined(__NT__ ) && (NTDDI_VERSION >= NTDDI_VISTA )
913+ #if defined(__OS2__ ) || defined(__NT__ ) && \
914+ (NTDDI_VERSION >= NTDDI_VISTA )
912915 #define XINET_PTON (a ,b ,c ) inet_pton((a),(b),(c))
913916 #else
914917 #define XINET_PTON (a ,b ,c ) *(unsigned *)(c) = inet_addr((b))
0 commit comments