From 2015f0d1d9370e16e895ff51dce291a94570e056 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Sat, 5 Dec 2015 11:31:43 -0500 Subject: alpm_run_chroot: remove dead code Removes a leftover error message from when fdopen and fgets were used to read from the pipe. Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- lib/libalpm/util.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 7e8f85ed..3824d136 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -705,11 +705,6 @@ int _alpm_run_chroot(alpm_handle_t *handle, const char *cmd, char *const argv[], } } - /* report error from above after the child has exited */ - if(retval != 0) { - _alpm_log(handle, ALPM_LOG_ERROR, _("could not open pipe (%s)\n"), strerror(errno)); - goto cleanup; - } /* check the return status, make sure it is 0 (success) */ if(WIFEXITED(status)) { _alpm_log(handle, ALPM_LOG_DEBUG, "call to waitpid succeeded\n"); -- cgit v1.2.3-24-g4f1b