diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-04-15 20:26:51 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-04-15 20:26:51 +0000 |
commit | 137365b51ad032cfef837eb721176afc9ecbb08e (patch) | |
tree | 3a24927f1651788be9f1965a75097f0e8222ef08 /app/cwm/util.c | |
parent | 6c2511bac22d67337971a08bada1d79809d39d14 (diff) |
Kill dirent_isdir() and dirent_islink() nothing used them since the new
parser went in.
ok okan.
Diffstat (limited to 'app/cwm/util.c')
-rw-r--r-- | app/cwm/util.c | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/app/cwm/util.c b/app/cwm/util.c index d8cd7fa24..4b10d722c 100644 --- a/app/cwm/util.c +++ b/app/cwm/util.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: util.c,v 1.6 2008/04/15 20:24:41 oga Exp $ + * $Id: util.c,v 1.7 2008/04/15 20:26:50 oga Exp $ */ #include "headers.h" @@ -64,31 +64,3 @@ exec_wm(char *argstr) execvp(args[0], args); warn(args[0]); } - -int -dirent_isdir(char *filename) -{ - struct stat buffer; - int return_value; - - return_value = stat(filename, &buffer); - - if (return_value == -1) - return (0); - else - return (S_ISDIR(buffer.st_mode)); -} - -int -dirent_islink(char *filename) -{ - struct stat buffer; - int return_value; - - return_value = lstat(filename, &buffer); - - if (return_value == -1) - return (0); - else - return (S_ISLNK(buffer.st_mode)); -} |