diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-28 12:44:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-28 12:44:22 +0000 |
commit | 5de8a13b0888e6eb490e13cba2cca293ee8bc4ad (patch) | |
tree | a15e68384ee3d1e7d7f890d2e8529cbcf13ccdd3 | |
parent | ea9f7a6a7fbc90c7dabd9c314199c73fd313e283 (diff) | |
download | busybox-5de8a13b0888e6eb490e13cba2cca293ee8bc4ad.tar.gz |
fiser: opendir "/proc", not "." (by Cristian Ionescu-Idbohrn)
-rw-r--r-- | procps/fuser.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/procps/fuser.c b/procps/fuser.c index fd876d559..663abe478 100644 --- a/procps/fuser.c +++ b/procps/fuser.c @@ -208,6 +208,7 @@ static pid_list *scan_dir_links(const char *dname, pid_t pid, return plist; } +/* NB: does chdir internally */ static pid_list *scan_proc_pids(inode_list *ilist) { DIR *d; @@ -215,7 +216,7 @@ static pid_list *scan_proc_pids(inode_list *ilist) pid_t pid; pid_list *plist; - d = opendir("."); + d = opendir("/proc"); if (!d) return NULL; @@ -329,7 +330,7 @@ Find processes which use FILEs or PORTs pp++; } - plist = scan_proc_pids(ilist); + plist = scan_proc_pids(ilist); /* changes dir to "/proc" */ if (!plist) return EXIT_FAILURE; |