diff options
author | root <root> | 2010-10-30 14:36:53 +0000 |
---|---|---|
committer | root <root> | 2010-10-30 14:36:53 +0000 |
commit | cdee5e592589399934e7c9b5e24eea1f843fa155 (patch) | |
tree | 683e386e35137a28eab1a83b58c7eaaecc41965b /eio.c | |
parent | c70a5ca0aaae31cbb3948c9c37bf66000320fa4e (diff) |
*** empty log message ***rel-3_7
Diffstat (limited to 'eio.c')
-rw-r--r-- | eio.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1632,8 +1632,6 @@ static void eio_api_destroy (eio_req *req) static void eio_execute (etp_worker *self, eio_req *req) { - errno = 0; - switch (req->type) { case EIO_READ: ALLOC (req->size); @@ -1724,7 +1722,6 @@ static void eio_execute (etp_worker *self, eio_req *req) else times = 0; - req->result = req->type == EIO_FUTIME ? futimes (req->int1, times) : utimes (req->ptr1, times); @@ -1743,6 +1740,7 @@ static void eio_execute (etp_worker *self, eio_req *req) break; default: + errno = ENOSYS; req->result = -1; break; } |