]> git.tuebingen.mpg.de Git - osl.git/blobdiff - fd.c
fsck.c depends on errtab.h.
[osl.git] / fd.c
diff --git a/fd.c b/fd.c
index 1519ac5552dbf106d7edbec5faf2776066c7e0f1..7d69a2f35b6fb3fe08ce487b6c02d3ebe557c9f2 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.
@@ -339,17 +340,13 @@ int truncate_file(const char *path, off_t size)
        int ret;
        struct stat statbuf;
 
-       ret = -E_OSL_STAT;
-       if (stat(path, &statbuf) < 0)
-               goto out;
+       ret = osl_stat(path, &statbuf);
+       if (ret < 0)
+               return ret;
        ret = -E_OSL_BAD_SIZE;
        if (statbuf.st_size < size)
-               goto out;
-       ret = -E_OSL_TRUNC;
+               return ret;
        if (truncate(path, statbuf.st_size - size) < 0)
-               goto out;
-       ret = 1;
-out:
-       return ret;
+               return -ERRNO_TO_ERROR(errno);
+       return 1;
 }
-