X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fzone.c;h=b8cc9197c2de5eea70990a1e4209b7f284a8d292;hb=2d4ef8aa6e7c9e2139b2bd2e22d790948980d62b;hp=385e5116af87b67b1bc67761dad82718d2859e1b;hpb=4ecc24f84bc88eca1f358e604fceea3ef71683ff;p=collectd.git diff --git a/src/zone.c b/src/zone.c index 385e5116..b8cc9197 100644 --- a/src/zone.c +++ b/src/zone.c @@ -17,6 +17,7 @@ * * Authors: * Mathijs Mohlmann + * Dagobert Michelsen (forward-porting) **/ #define _BSD_SOURCE @@ -65,10 +66,8 @@ zone_read_procfile(char *pidstr, char *file, void *buf, size_t bufsize) char procfile[MAX_PROCFS_PATH]; (void)snprintf(procfile, sizeof(procfile), "/proc/%s/%s", pidstr, file); - while ((fd = open(procfile, O_RDONLY)) == -1) { - if ((errno != EMFILE) || (errno != ENFILE)) { - return(1); - } + if ((fd = open(procfile, O_RDONLY)) == -1) { + return (1); } if (pread(fd, buf, bufsize, 0) != bufsize) {