Mercurial > hg > xemacs-beta
diff src/eldap.h @ 361:7347b34c275b r21-1-10
Import from CVS: tag r21-1-10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:58:40 +0200 |
parents | 57709be46d1b |
children | cc15677e0335 |
line wrap: on
line diff
--- a/src/eldap.h Mon Aug 13 10:57:57 2007 +0200 +++ b/src/eldap.h Mon Aug 13 10:58:40 2007 +0200 @@ -37,8 +37,6 @@ LDAP *ld; /* Name of the host we connected to */ Lisp_Object host; - /* Status of the LDAP connection. */ - int livep; }; @@ -52,7 +50,7 @@ #define CHECK_LIVE_LDAP(ldap) do { \ CHECK_LDAP (ldap); \ - if (!XLDAP (ldap)->livep) \ + if (!XLDAP (ldap)->ld) \ signal_simple_error ("Attempting to access closed LDAP connection", \ ldap); \ } while (0)