]> git.tuebingen.mpg.de Git - osl.git/blobdiff - fd.c
Get rid of E_OSL_STAT.
[osl.git] / fd.c
diff --git a/fd.c b/fd.c
index 1519ac5552dbf106d7edbec5faf2776066c7e0f1..cd5232caf1339a61ae8d9a397395fe07214b6892 100644 (file)
--- a/fd.c
+++ b/fd.c
@@ -15,6 +15,7 @@
 #include "log.h"
 #include "osl.h"
 #include "error.h"
 #include "log.h"
 #include "osl.h"
 #include "error.h"
+#include "fd.h"
 
 /**
  * Wrapper for the write system call.
 
 /**
  * Wrapper for the write system call.
@@ -339,8 +340,8 @@ int truncate_file(const char *path, off_t size)
        int ret;
        struct stat statbuf;
 
        int ret;
        struct stat statbuf;
 
-       ret = -E_OSL_STAT;
-       if (stat(path, &statbuf) < 0)
+       ret = osl_stat(path, &statbuf);
+       if (ret < 0)
                goto out;
        ret = -E_OSL_BAD_SIZE;
        if (statbuf.st_size < size)
                goto out;
        ret = -E_OSL_BAD_SIZE;
        if (statbuf.st_size < size)