Changeset 902 for trunk/server/source3/lib/system.c
- Timestamp:
- Apr 1, 2016, 8:48:05 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/server/source3/lib/system.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/lib/system.c
r874 r902 817 817 int sys_open(const char *path, int oflag, mode_t mode) 818 818 { 819 820 821 822 823 824 819 825 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OPEN64) 820 return open64(path, oflag , mode);821 #else 822 return open(path, oflag , mode);826 return open64(path, oflag, mode); 827 #else 828 return open(path, oflag, mode); 823 829 #endif 824 830 } … … 830 836 FILE *sys_fopen(const char *path, const char *type) 831 837 { 838 839 840 841 842 843 844 845 846 847 848 849 850 851 832 852 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_FOPEN64) 833 853 return fopen64(path, type); 834 854 #else 835 855 return fopen(path, type); 856 857 836 858 #endif 837 859 }
Note:
See TracChangeset
for help on using the changeset viewer.
