Ignore:
Timestamp:
Apr 1, 2016, 8:48:05 PM (10 years ago)
Author:
Silvan Scherrer
Message:

samba server: remove -Zbin-files, more bin work done

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/lib/system.c

    r874 r902  
    817817int sys_open(const char *path, int oflag, mode_t mode)
    818818{
     819
     820
     821
     822
     823
     824
    819825#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);
    823829#endif
    824830}
     
    830836FILE *sys_fopen(const char *path, const char *type)
    831837{
     838
     839
     840
     841
     842
     843
     844
     845
     846
     847
     848
     849
     850
     851
    832852#if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_FOPEN64)
    833853        return fopen64(path, type);
    834854#else
    835855        return fopen(path, type);
     856
     857
    836858#endif
    837859}
Note: See TracChangeset for help on using the changeset viewer.