diff options
Diffstat (limited to 'toys/other/nbd_client.c')
-rw-r--r-- | toys/other/nbd_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/nbd_client.c b/toys/other/nbd_client.c index 6b437c72..969ad4ae 100644 --- a/toys/other/nbd_client.c +++ b/toys/other/nbd_client.c @@ -112,7 +112,7 @@ void nbd_client_main(void) // Daemonize here. - daemon(0,0); + if (daemon(0,0)) perror_exit("daemonize"); // Process NBD requests until further notice. |