]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - fd.c
Get rid of E_FCHDIR.
[paraslash.git] / fd.c
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;
 }