]> git.sur5r.net Git - openldap/commitdiff
Fix uninit'd timeout value
authorHoward Chu <hyc@openldap.org>
Thu, 13 Feb 2003 10:24:32 +0000 (10:24 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 13 Feb 2003 10:24:32 +0000 (10:24 +0000)
servers/slapd/back-ldap/search.c

index 41b397a9da22dd2cdef2c9535414219f59671768..e76e500ce57dcf41dde6fcd525027a29fafb81ef 100644 (file)
@@ -273,6 +273,7 @@ fail:;
         * but this is necessary for version matching, and for ACL processing.
         */
        
+       tv.tv_sec = 0; tv.tv_usec = 100000;
        for (   count=0, rc=0;
                        rc != -1;
                        rc = ldap_result(lc->ld, msgid, 0, &tv, &res))