diff options
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/nbd_client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/other/nbd_client.c b/toys/other/nbd_client.c index 33787d77..6b437c72 100644 --- a/toys/other/nbd_client.c +++ b/toys/other/nbd_client.c @@ -119,10 +119,9 @@ void nbd_client_main(void) if (ioctl(nbd, NBD_DO_IT)>=0 || errno==EBADR) break; close(sock); } - close(nbd); // Flush queue and exit. - ioctl(nbd, NBD_CLEAR_QUE); ioctl(nbd, NBD_CLEAR_SOCK); + if (CFG_TOYBOX_FREE) close(nbd); } |