Android build: fix usage of NDK home variable ($ndk_var)
[openssl.git] / crypto / bio / bss_fd.c
index 9c1826c06c1c82486efa21da9e93bae897b1ccd4..5bc539c90b961fb89cd7084f4ba9b3fe1e761c04 100644 (file)
@@ -58,7 +58,8 @@ static int fd_free(BIO *data);
 int BIO_fd_should_retry(int s);
 
 static const BIO_METHOD methods_fdp = {
-    BIO_TYPE_FD, "file descriptor",
+    BIO_TYPE_FD,
+    "file descriptor",
     /* TODO: Convert to new style write function */
     bwrite_conv,
     fd_write,
@@ -70,7 +71,7 @@ static const BIO_METHOD methods_fdp = {
     fd_ctrl,
     fd_new,
     fd_free,
-    NULL,
+    NULL,                       /* fd_callback_ctrl */
 };
 
 const BIO_METHOD *BIO_s_fd(void)