From: Todd C. Miller Date: Sun, 26 Jun 2005 23:38:44 +0000 (+0000) Subject: align struct ldap_config X-Git-Tag: SUDO_1_7_0~622 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=380d3c8c7ba4aa6f536ba4c2c18a62b5f5248015;p=sudo align struct ldap_config --- diff --git a/ldap.c b/ldap.c index db6b8d918..bea8f1e08 100644 --- a/ldap.c +++ b/ldap.c @@ -79,23 +79,23 @@ __unused static const char rcsid[] = "$Sudo$"; /* ldap configuration structure */ struct ldap_config { - char *host; int port; int version; + int debug; + int tls_checkpeer; + char *host; char *uri; char *binddn; char *bindpw; char *rootbinddn; char *base; char *ssl; - int tls_checkpeer; char *tls_cacertfile; char *tls_cacertdir; char *tls_random_file; char *tls_cipher_suite; char *tls_certfile; char *tls_keyfile; - int debug; } ldap_conf; /*