]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Get rid of E_FCHDIR.
authorAndre Noll <maan@systemlinux.org>
Wed, 10 Oct 2007 17:50:12 +0000 (19:50 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 10 Oct 2007 17:50:12 +0000 (19:50 +0200)
Return the system error code instead.

error.h
fd.c

diff --git a/error.h b/error.h
index d7a6d03190328bd085f2980795573ce1ae61d694..d248190002fac3860157717dd6b0da55acebcfcb 100644 (file)
--- a/error.h
+++ b/error.h
@@ -410,7 +410,6 @@ extern const char **para_errlist[];
 #define FD_ERRORS \
        PARA_ERROR(FGETS, "fgets error"), \
        PARA_ERROR(CHDIR, "failed to change directory"), \
-       PARA_ERROR(FCHDIR, "fchdir failed"), \
        PARA_ERROR(OPEN, "failed to open file"), \
        PARA_ERROR(CHDIR_PERM, "insufficient permissions to chdir"), \
 
diff --git a/fd.c b/fd.c
index 0065887d374a4ddba4f2d7a6d4b07aa094c22f1a..22550286d57747ec90bcdc4aa050c8bea8259e65 100644 (file)
--- a/fd.c
+++ b/fd.c
@@ -206,7 +206,7 @@ int para_chdir(const char *path)
  * \param dir Result pointer.
  * \param cwd File descriptor of the current working directory.
  *
- * \return Positive on success, negative on errors.
+ * \return Standard.
  *
  * Opening the current directory (".") and calling fchdir() to return is
  * usually faster and more reliable than saving cwd in some buffer and calling
@@ -255,12 +255,12 @@ close_cwd:
  *
  * \param fd An open file descriptor
  *
- * \return Positive on success, negative on errors.
+ * \return Standard.
  */
 int para_fchdir(int fd)
 {
        if (fchdir(fd) < 0)
-               return -E_FCHDIR;
+               return -ERRNO_TO_PARA_ERROR(errno);
        return 1;
 }