Removed lint.

This commit is contained in:
Kurt Zeilenga 1999-05-19 07:20:06 +00:00
parent d8cb38c2ef
commit 8ef7993047
2 changed files with 2 additions and 2 deletions

View file

@ -502,7 +502,7 @@ ber_put_seqorset( BerElement *ber )
if ( ber->ber_options & LBER_USE_DER ) {
ltag = (lenlen == 1)
? (unsigned char) len
: 0x80UL + (lenlen - 1);
: (unsigned char) (0x80UL + (lenlen - 1));
}
/* one byte of length length */

View file

@ -263,8 +263,8 @@ open_ldap_connection( LDAP *ld, Sockbuf *sb, const char *host, int defport,
ber_pvt_sb_set_io( sb, &ber_pvt_sb_io_tcp, NULL );
if ( krbinstancep != NULL ) {
char *c;
#ifdef HAVE_KERBEROS
char *c;
if (( *krbinstancep = ldap_host_connected_to( sb )) != NULL &&
( c = strchr( *krbinstancep, '.' )) != NULL ) {
*c = '\0';