From 88c3bbaecb41153aa9e00bff25962487db4ba8fe Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Mon, 1 May 2000 17:08:23 +0000 Subject: fix a typo in the for loop. 2000-05-01 Larry Ewing * backend/pas/pas-backend-ldap.c (pas_backend_ldap_remove_client): fix a typo in the for loop. svn path=/trunk/; revision=2714 --- addressbook/ChangeLog | 5 +++++ addressbook/backend/pas/pas-backend-ldap.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 171a4a948f..59d9422107 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2000-05-01 Larry Ewing + + * backend/pas/pas-backend-ldap.c (pas_backend_ldap_remove_client): + fix a typo in the for loop. + 2000-05-01 Michael Meeks * backend/pas/pas-book-factory.c: include gtk. diff --git a/addressbook/backend/pas/pas-backend-ldap.c b/addressbook/backend/pas/pas-backend-ldap.c index f1fa1ea92b..041d7cea4f 100644 --- a/addressbook/backend/pas/pas-backend-ldap.c +++ b/addressbook/backend/pas/pas-backend-ldap.c @@ -979,7 +979,7 @@ pas_backend_ldap_remove_client (PASBackend *backend, /* Find the book in the list of clients */ - for (l = bl->priv->clients, l; l = l->next) { + for (l = bl->priv->clients; l; l = l->next) { lbook = PAS_BOOK (l->data); if (lbook == book) -- cgit v1.2.3