summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXfennec <xfennec@cqfd-corp.org>2014-09-02 11:46:54 +0200
committerXfennec <xfennec@cqfd-corp.org>2014-09-02 11:46:54 +0200
commitf107805227ee45d3502dd6e9bceab65dede030de (patch)
treebe8c56c5e2c3f5af265c170368bf02950baed17c
parent768794ca71ef7d714779c92838a425043c8cf959 (diff)
Debug mode was broken. Oops.v0.5.1
-rw-r--r--cv.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cv.c b/cv.c
index 7670f31..9d2e561 100644
--- a/cv.c
+++ b/cv.c
@@ -116,7 +116,7 @@ while((direntp = readdir(proc)) != NULL) {
snprintf(fullpath_dir, MAXPATHLEN, "%s/%s", PROC_PATH, direntp->d_name);
if(stat(fullpath_dir, &stat_buf) == -1) {
- if (!flag_debug)
+ if (flag_debug)
nperror("stat (find_pids_by_binary_name)");
continue;
}
@@ -169,7 +169,7 @@ if(!proc) {
while((direntp = readdir(proc)) != NULL) {
snprintf(fullpath, MAXPATHLEN, "%s/%s", path_dir, direntp->d_name);
if(stat(fullpath, &stat_buf) == -1) {
- if (!flag_debug)
+ if (flag_debug)
nperror("stat (find_fd_for_pid)");
continue;
}
@@ -225,7 +225,7 @@ else {
if(stat(fd_info->name, &stat_buf) == -1) {
//~ printf("[debug] %i - %s\n",pid,fd_info->name);
- if (!flag_debug)
+ if (flag_debug)
nperror("stat (get_fdinfo)");
return 0;
}
@@ -236,13 +236,13 @@ if(S_ISBLK(stat_buf.st_mode)) {
fd = open(fd_info->name, O_RDONLY);
if (fd < 0) {
- if (!flag_debug)
+ if (flag_debug)
nperror("open (get_fdinfo)");
return 0;
}
if (ioctl(fd, BLKGETSIZE64, &fd_info->size) < 0) {
- if (!flag_debug)
+ if (flag_debug)
nperror("ioctl (get_fdinfo)");
close(fd);
return 0;
@@ -260,7 +260,7 @@ fp = fopen(fdpath, "rt");
gettimeofday(&fd_info->tv, &tz);
if(!fp) {
- if (!flag_debug)
+ if (flag_debug)
nperror("fopen (get_fdinfo)");
return 0;
}