From: oetiker Date: Thu, 28 Aug 2008 05:52:39 +0000 (+0000) Subject: rely on what the function returns. errno is only for informatio not for detection... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=94c3b3b8a4571c52c38ea361fadaa76dfd16934c;p=rrdtool.git rely on what the function returns. errno is only for informatio not for detection of errors. #176. git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@1472 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_tool.c b/src/rrd_tool.c index 85269f0..dfd9890 100644 --- a/src/rrd_tool.c +++ b/src/rrd_tool.c @@ -379,8 +379,7 @@ int main(int argc, char *argv[]) == 0 ){ #ifdef HAVE_CHROOT - chroot(argv[2]); - if (errno!=0){ + if (chroot(argv[2]) != 0){ fprintf(stderr,"ERROR: can't change root to '%s' errno=%d\n", argv[2],errno); exit(errno); @@ -397,8 +396,7 @@ int main(int argc, char *argv[]) } } if (strcmp(firstdir,"")){ - chdir(firstdir); - if (errno!=0){ + if (chdir(firstdir)!=0){ fprintf(stderr,"ERROR: %s\n",rrd_strerror(errno)); exit(errno); } @@ -496,8 +494,7 @@ int HandleInputLine(int argc, char **argv, FILE* out) return(1); } #endif - chdir(argv[2]); - if (errno!=0){ + if (chdir(argv[2]) != 0){ printf("ERROR: %s\n",rrd_strerror(errno)); return(1); } @@ -529,8 +526,7 @@ int HandleInputLine(int argc, char **argv, FILE* out) return(1); } #endif - mkdir(argv[2],0777); - if (errno!=0){ + if (mkdir(argv[2],0777) != 0){ printf("ERROR: %s\n",rrd_strerror(errno)); return(1); }