http://git.etherboot.org
/
people
/
xl0
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
cde6d77
)
Propagate return status code from last child to fail.
author
Michael Brown
<mcb30@etherboot.org>
Fri, 19 Jan 2007 14:00:51 +0000
(14:00 +0000)
committer
Michael Brown
<mcb30@etherboot.org>
Fri, 19 Jan 2007 14:00:51 +0000
(14:00 +0000)
src/core/resolv.c
patch
|
blob
|
history
diff --git
a/src/core/resolv.c
b/src/core/resolv.c
index
61bdfb0
..
60195ba
100644
(file)
--- a/
src/core/resolv.c
+++ b/
src/core/resolv.c
@@
-113,7
+113,7
@@
static void resolv_sigchld ( struct async *async,
/* If we have no children left, return failure */
if ( --(resolution->pending) == 0 )
- async_done ( async,
-ENXIO
);
+ async_done ( async,
rc
);
}
/**