diff --git a/src/pacman/package.c b/src/pacman/package.c index b62a1376..b9a323b7 100644 --- a/src/pacman/package.c +++ b/src/pacman/package.c @@ -26,7 +26,6 @@ #include #include #include -#include #include #include @@ -225,7 +224,6 @@ void dump_pkg_files(pmpkg_t *pkg) { const char *pkgname, *root, *filestr; alpm_list_t *i, *pkgfiles; - struct stat buf; char path[PATH_MAX]; pkgname = alpm_pkg_get_name(pkg); @@ -236,18 +234,10 @@ void dump_pkg_files(pmpkg_t *pkg) filestr = (char*)alpm_list_getdata(i); /* build a path so we can stat the filename */ snprintf(path, PATH_MAX-1, "%s%s", root, filestr); - if(!lstat(path, &buf)) { - if(!S_ISDIR(buf.st_mode)) { - /* don't print directories */ - fprintf(stdout, "%s %s\n", pkgname, path); - } - } else { - fprintf(stderr, "%s %s : %s\n", pkgname, path, strerror(errno)); - } + fprintf(stdout, "%s %s\n", pkgname, path); } fflush(stdout); - fflush(stderr); } /* Display the changelog of an installed package