aboutsummaryrefslogtreecommitdiff
path: root/src/usr/imgmgmt.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2013-11-01 01:55:13 +0000
committerMichael Brown <mcb30@ipxe.org>2013-11-01 16:26:02 +0000
commitd1be9f4acc9d4367fb6dc793495f0cc819b5a514 (patch)
tree6865cbc8e41c0b052aa704f0a41b7eaecd0f2f0a /src/usr/imgmgmt.c
parent5674a3c087bf1bde65b61b6b0ca26035dd47baa3 (diff)
downloadipxe-d1be9f4acc9d4367fb6dc793495f0cc819b5a514.zip
ipxe-d1be9f4acc9d4367fb6dc793495f0cc819b5a514.tar.gz
ipxe-d1be9f4acc9d4367fb6dc793495f0cc819b5a514.tar.bz2
[monojob] Add timeout parameter to monojob_wait()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/usr/imgmgmt.c')
-rw-r--r--src/usr/imgmgmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/imgmgmt.c b/src/usr/imgmgmt.c
index ef4e2c3..ecf9d31 100644
--- a/src/usr/imgmgmt.c
+++ b/src/usr/imgmgmt.c
@@ -72,7 +72,7 @@ int imgdownload ( struct uri *uri, struct image **image ) {
}
/* Wait for download to complete */
- if ( ( rc = monojob_wait ( uri_string_redacted ) ) != 0 )
+ if ( ( rc = monojob_wait ( uri_string_redacted, 0 ) ) != 0 )
goto err_monojob_wait;
/* Register image */