diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/backend/pas/pas-backend-ldap.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <lewing@helixcode.com> + + * backend/pas/pas-backend-ldap.c (pas_backend_ldap_remove_client): + fix a typo in the for loop. + 2000-05-01 Michael Meeks <michael@helixcode.com> * 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) |