pkgsrc/net/samba35/patches/patch-aa
apb 908a761e32 Fix an infinite loop in the configure script's test for
"checking for replacing readdir using getdirentries()".
The functions in samba-3.5.10/lib/replace/repdir_getdirentries.c
fail on NetBSD 5.99.54, and the test code in
samba-3.5.10/lib/replace/test/os2_delete.c
did not handle the failure.

Not bumping PKGREVISION, because this affects only the
configure script, and the package did not build on
NetBSD-current before.
2011-08-01 08:42:39 +00:00

15 lines
507 B
Text

$NetBSD: patch-aa,v 1.3 2011/08/01 08:42:39 apb Exp $
Avoid an infinite loop in the configure script after
"checking for replacing readdir using getdirentries()..."
--- ../lib/replace/test/os2_delete.c.orig 2011-07-24 20:04:44.000000000 +0000
+++ ../lib/replace/test/os2_delete.c 2011-08-01 08:09:59.000000000 +0000
@@ -116,6 +116,7 @@
while (1) {
int n = os2_delete(d);
if (n == 0) break;
+ if (test_readdir_os2_delete_ret != 0) break; /* if FAILED */
total_deleted += n;
}
closedir(d);