From 260e1a9037d53b8accad3c94f27544c78a1a9b27 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 23 Sep 2008 22:38:36 +0200 Subject: Remove EINTR checking for open(2) open(2) should only interrupt on "slow" devices, afaik... [mk: still using fopen()] --- src/directory.c | 2 +- src/state_file.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/directory.c b/src/directory.c index a3efdf15e..9c8bd23fa 100644 --- a/src/directory.c +++ b/src/directory.c @@ -968,7 +968,7 @@ int writeDirectoryDB(void) DEBUG("writing DB\n"); - while (!(fp = fopen(dbFile, "w")) && errno == EINTR); + fp = fopen(dbFile, "w"); if (!fp) { ERROR("unable to write to db file \"%s\": %s\n", dbFile, strerror(errno)); diff --git a/src/state_file.c b/src/state_file.c index 3bc4f8f0c..2ce5e66b4 100644 --- a/src/state_file.c +++ b/src/state_file.c @@ -55,8 +55,7 @@ void write_state_file(void) if (!sfpath) return; - while (!(fp = fopen(sfpath, "w")) && errno == EINTR); - + fp = fopen(sfpath, "w"); if (mpd_unlikely(!fp)) { ERROR("problems opening state file \"%s\" for writing: %s\n", sfpath, strerror(errno)); -- cgit v1.2.3