aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2026-02-04 14:11:59 +0000
committerRon Yorston <rmy@pobox.com>2026-02-04 14:11:59 +0000
commit7d8a39ae7f059a3b878a259a1366fe588f6d5753 (patch)
tree1d79435647928ab83b555cf8ce84d4f30a6a8d31 /libbb
parent8e6a6312552343aec7f5cde795ef0a11ef83b8ff (diff)
parent28e4d2b854d7072c510f416acd2eea5dcdbc346a (diff)
downloadbusybox-w32-master.tar.gz
busybox-w32-master.tar.bz2
busybox-w32-master.zip
Merge branch 'busybox' into mergeHEADmergemaster
Diffstat (limited to '')
-rw-r--r--libbb/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c
index a0c5d0259..b603d0daa 100644
--- a/libbb/loop.c
+++ b/libbb/loop.c
@@ -158,7 +158,7 @@ static int set_loopdev_params(int lfd,
158 if (rc == 0) 158 if (rc == 0)
159 return rc; /* SUCCESS! */ 159 return rc; /* SUCCESS! */
160# if ENABLE_TRY_LOOP_CONFIGURE 160# if ENABLE_TRY_LOOP_CONFIGURE
161 if (errno != EINVAL) 161 if (errno != EINVAL && errno != ENOTTY)
162 return rc; /* error other than old kernel */ 162 return rc; /* error other than old kernel */
163 /* Old kernel, fall through into old way to do it: */ 163 /* Old kernel, fall through into old way to do it: */
164# endif 164# endif