diff options
Diffstat (limited to 'toys/pending/nbd_client.c')
-rw-r--r-- | toys/pending/nbd_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/nbd_client.c b/toys/pending/nbd_client.c index 9164a114..9a5b2f74 100644 --- a/toys/pending/nbd_client.c +++ b/toys/pending/nbd_client.c @@ -100,7 +100,7 @@ void nbd_client_main(void) if (toys.optflags & FLAG_s) mlockall(MCL_CURRENT|MCL_FUTURE); // Open the device to force reread of the partition table. - if ((toys.optflags & FLAG_n) || !fork()) { + if ((toys.optflags & FLAG_n) || !xfork()) { char *s = strrchr(device, '/'); int i; |