X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=blobdiff_plain;f=util.c;h=64d83c84f3292ffffa87af4f5129c891f4e3796e;hp=7500c08b2a6f085f4acc4fc77efc985a4351d977;hb=cf207dcadaa03addb1381012f9b822a754a526af;hpb=22abcc2013d2f68ec55e5e0113c682899662c7d7;ds=sidebyside diff --git a/util.c b/util.c index 7500c08..64d83c8 100644 --- a/util.c +++ b/util.c @@ -88,7 +88,7 @@ int osl_open(const char *path, int flags, mode_t mode) if (ret >= 0) return ret; - return -E_OSL_OPEN; + return errno == ENOENT? -E_OSL_NOENT : -E_OSL_OPEN; } /** @@ -152,7 +152,7 @@ int mmap_full_file(const char *path, int open_mode, void **map, return ret; fd = ret; if (fstat(fd, &file_status) < 0) { - ret = -E_OSL_FSTAT; + ret = errno == ENOENT? -E_OSL_NOENT : -E_OSL_STAT; goto out; } *size = file_status.st_size;