2007-01-21 [colin] 2.7.1cvs49

* src/ldapquery.c
	* src/ldapquery.h
		Revert a static function that shouldn't
		have been
This commit is contained in:
Colin Leroy 2007-01-21 21:33:17 +00:00
parent 97bbb62b14
commit aa08cb89b9
5 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2007-01-21 [colin] 2.7.1cvs49
* src/ldapquery.c
* src/ldapquery.h
Revert a static function that shouldn't
have been
2007-01-21 [colin] 2.7.1cvs48
* src/ldapquery.c

View file

@ -2306,3 +2306,4 @@
( cvs diff -u -r 1.13.2.26 -r 1.13.2.27 src/common/socket.c; cvs diff -u -r 1.13.2.11 -r 1.13.2.12 src/common/socket.h; ) > 2.7.1cvs46.patchset
( cvs diff -u -r 1.150.2.88 -r 1.150.2.89 src/procmsg.c; cvs diff -u -r 1.60.2.38 -r 1.60.2.39 src/procmsg.h; ) > 2.7.1cvs47.patchset
( cvs diff -u -r 1.3.2.13 -r 1.3.2.14 src/ldapquery.c; cvs diff -u -r 1.4.2.7 -r 1.4.2.8 src/ldapquery.h; ) > 2.7.1cvs48.patchset
( cvs diff -u -r 1.3.2.14 -r 1.3.2.15 src/ldapquery.c; cvs diff -u -r 1.4.2.8 -r 1.4.2.9 src/ldapquery.h; ) > 2.7.1cvs49.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=7
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=48
EXTRA_VERSION=49
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -214,7 +214,7 @@ void ldapqry_set_callback_end( LdapQuery *qry, void *func ) {
* \param qry Query object.
* \param value Value of stop flag.
*/
static void ldapqry_set_stop_flag( LdapQuery *qry, const gboolean value ) {
void ldapqry_set_stop_flag( LdapQuery *qry, const gboolean value ) {
g_return_if_fail( qry != NULL );
pthread_mutex_lock( qry->mutexStop );

View file

@ -79,7 +79,7 @@ void ldapqry_set_callback_start ( LdapQuery *qry, void *func );
void ldapqry_set_callback_entry ( LdapQuery *qry, void *func );
void ldapqry_set_callback_end ( LdapQuery *qry, void *func );
void ldapqry_free ( LdapQuery *qry );
void ldapqry_set_stop_flag( LdapQuery *qry, const gboolean value );
gboolean ldapqry_check_search ( LdapQuery *qry );
void ldapqry_touch ( LdapQuery *qry );
gint ldapqry_read_data_th ( LdapQuery *qry );