]> 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 920bce9cf49a132a868c1983f990cd7fd124748a..cd5232caf1339a61ae8d9a397395fe07214b6892 100644 (file)
--- a/fd.c
+++ b/fd.c
@@ -15,6 +15,7 @@
 #include "log.h"
 #include "osl.h"
 #include "error.h"
+#include "fd.h"
 
 /**
  * Wrapper for the write system call.
@@ -334,13 +335,13 @@ __must_check __printf_1_2 __malloc char *make_message(const char *fmt, ...)
  *
  * \sa truncate(2)
  */
-int para_truncate(const char *path, off_t size)
+int truncate_file(const char *path, off_t size)
 {
        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)