From: Kurt Zeilenga Date: Tue, 23 Jan 2001 20:38:19 +0000 (+0000) Subject: Rename timelimit to timeout where it refers to the time out not the time limit. X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1535 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b873db292c4f37d8113fc1b576011e6e1afc2616;p=openldap Rename timelimit to timeout where it refers to the time out not the time limit. --- diff --git a/clients/tools/ldapsearch.c b/clients/tools/ldapsearch.c index b9b7affac1..ece0d0485c 100644 --- a/clients/tools/ldapsearch.c +++ b/clients/tools/ldapsearch.c @@ -135,7 +135,7 @@ static int dosearch LDAP_P(( int attrsonly, LDAPControl **sctrls, LDAPControl **cctrls, - struct timeval *timelimit, + struct timeval *timeout, int sizelimit )); static char *tmpdir = NULL; @@ -888,7 +888,7 @@ static int dosearch( int attrsonly, LDAPControl **sctrls, LDAPControl **cctrls, - struct timeval *timelimit, + struct timeval *timeout, int sizelimit ) { char filter[ BUFSIZ ]; @@ -921,7 +921,7 @@ static int dosearch( } rc = ldap_search_ext( ld, base, scope, filter, attrs, attrsonly, - sctrls, cctrls, timelimit, sizelimit, &msgid ); + sctrls, cctrls, timeout, sizelimit, &msgid ); if( rc != LDAP_SUCCESS ) { fprintf( stderr, "%s: ldap_search_ext: %s (%d)\n",