diff options
Diffstat (limited to 'procps')
-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 fd876d5..663abe4 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; |