]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Update revision for O_LARGEFILE change.
authorTim Shimmin <tes@sgi.com>
Tue, 2 Apr 2002 08:48:52 +0000 (08:48 +0000)
committerTim Shimmin <tes@sgi.com>
Tue, 2 Apr 2002 08:48:52 +0000 (08:48 +0000)
libhandle/Makefile
libhandle/handle.c

index d077e6d9921a18394efa30a06651de88fab8fed1..2c38c5c94cd70050a0627ea8c5d79807a42d962c 100644 (file)
@@ -35,7 +35,7 @@ include $(TOPDIR)/include/builddefs
 
 LTLIBRARY = libhandle.la
 LT_CURRENT = 1
-LT_REVISION = 0
+LT_REVISION = 1
 LT_AGE = 0
 
 CFILES = handle.c jdm.c
index f90fdfd1c13d55acafd12be15608622e6c476b2d..ee37b53e00ded4ec2a1aefa09e1a748e44b05656 100644 (file)
@@ -226,7 +226,7 @@ obj_to_handle (
                hreq.path    = obj.path;
        }
 
-       hreq.oflags   = 0;
+       hreq.oflags   = O_LARGEFILE;
        hreq.ihandle  = NULL;
        hreq.ihandlen = 0;
        hreq.ohandle  = hbuf;
@@ -268,7 +268,7 @@ open_by_handle (
 
        hreq.fd       = 0;
        hreq.path     = NULL;
-       hreq.oflags   = rw;
+       hreq.oflags   = rw | O_LARGEFILE;
        hreq.ihandle  = hanp;
        hreq.ihandlen = hlen;
        hreq.ohandle  = NULL;
@@ -297,7 +297,7 @@ readlink_by_handle (
 
        hreq.fd       = 0;
        hreq.path     = NULL;
-       hreq.oflags   = 0;
+       hreq.oflags   = O_LARGEFILE;
        hreq.ihandle  = hanp;
        hreq.ihandlen = hlen;
        hreq.ohandle  = buf;
@@ -324,7 +324,7 @@ attr_multi_by_handle(
 
        amhreq.hreq.fd       = 0;
        amhreq.hreq.path     = NULL;
-       amhreq.hreq.oflags   = 0;
+       amhreq.hreq.oflags   = O_LARGEFILE;
        amhreq.hreq.ihandle  = hanp;
        amhreq.hreq.ihandlen = hlen;
        amhreq.hreq.ohandle  = NULL;
@@ -355,7 +355,7 @@ attr_list_by_handle(
 
        alhreq.hreq.fd       = 0;
        alhreq.hreq.path     = NULL;
-       alhreq.hreq.oflags   = 0;
+       alhreq.hreq.oflags   = O_LARGEFILE;
        alhreq.hreq.ihandle  = hanp;
        alhreq.hreq.ihandlen = hlen;
        alhreq.hreq.ohandle  = NULL;
@@ -386,7 +386,7 @@ fssetdm_by_handle (
 
        dmhreq.hreq.fd       = 0;
        dmhreq.hreq.path     = NULL;
-       dmhreq.hreq.oflags   = 0;
+       dmhreq.hreq.oflags   = O_LARGEFILE;
        dmhreq.hreq.ihandle  = hanp;
        dmhreq.hreq.ihandlen = hlen;
        dmhreq.hreq.ohandle  = NULL;