X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=blobdiff_plain;f=file.c;h=cd1e43ef7c32c835266bdd3ae73ac34f614371a0;hp=ef7cd528680ee03c021e8cbe2bc1ab6a2434084c;hb=c3ad4e36f7ee18ab6fab4595fa2728a47c1db761;hpb=8daf8f3836e745ba07f1aa01252279588574c95a diff --git a/file.c b/file.c index ef7cd52..cd1e43e 100644 --- a/file.c +++ b/file.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006-2010 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* SPDX-License-Identifier: GPL-2.0 */ #include #include @@ -23,7 +19,7 @@ * Call a function for each subdirectory of the current working directory. * * \param dirname The directory to traverse. - * \param func The function to call for each subdirecrtory. + * \param func The function to call for each subdirectory. * \param private_data Pointer to an arbitrary data structure. * * For each top-level directory under \a dirname, the supplied function \a func is @@ -69,19 +65,6 @@ out: closedir(dir); return ret; } -/** - * Wrapper for chdir(2). - * - * \param path The specified directory. - * - * \return Standard. - */ -int dss_chdir(const char *path) -{ - if (chdir(path) >= 0) - return 1; - return -ERRNO_TO_DSS_ERROR(errno); -} /** * Set a file descriptor to non-blocking mode.