Browse Source

Commented out inet_sendfile64 fixing compile error

MissValeska 9 years ago
parent
commit
941413c77e
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      src/inet.c

+ 4
- 3
src/inet.c View File

@@ -1180,8 +1180,9 @@ inet_sendfile(int out_fd, int in_fd, off_t * offset, size_t count)
1180 1180
 	return err;
1181 1181
 }
1182 1182
 
1183
-/* For use in 32 bit systems requiring 64 bit operations */
1184
-
1183
+/* For use in 32 bit systems requiring 64 bit operations
1184
+ * Currently non-functional. */
1185
+/*
1185 1186
 #if UINTPTR_MAX == 0xffffffff
1186 1187
 #ifndef _LARGEFILE64_SOURCE
1187 1188
 #define _LARGEFILE64_SOURCE
@@ -1199,4 +1200,4 @@ inet_sendfile64(int out_fd, int in_fd, off64_t * offset, size_t count)
1199 1200
         }
1200 1201
 	return err;
1201 1202
 }
1202
-#endif
1203
+#endif*/

Loading…
Cancel
Save