Make ldap_utf8_bytes() act like strlen() not sizeof()

This commit is contained in:
Kurt Zeilenga 2000-01-23 23:33:01 +00:00
parent 42cc5e5333
commit ed9969b1c4
3 changed files with 5 additions and 8 deletions

View File

@ -147,8 +147,7 @@ LIBLDAP_F (int) ldap_pvt_tls_start LDAP_P(( Sockbuf *sb, void *ctx_arg ));
* UTF-8 (in utf-8.c)
*/
/* returns the number of bytes in the UTF-8 string
(counting the NULL) */
/* returns the number of bytes in the UTF-8 string */
LIBLDAP_F (ber_len_t) ldap_utf8_bytes( const char * );
/* returns the number of UTF-8 characters in the string */
LIBLDAP_F (ber_len_t) ldap_utf8_chars( const char * );

View File

@ -133,7 +133,7 @@ static void openldap_ldap_init_w_conf(
*start++ = '\0';
/* we must have some non-whitespace to skip */
/* we must have some whitespace to skip */
while(isspace((unsigned char)*start)) start++;
opt = start;

View File

@ -39,16 +39,14 @@
/*
* return the number of bytes required to hold the
* NULL-terminated UTF-8 string INCLUDING the
* NULL-terminated UTF-8 string NOT INCLUDING the
* termination.
*/
ber_len_t ldap_utf8_bytes( const char * p )
{
ber_len_t bytes = 0;
ber_len_t bytes;
if( p == NULL ) return bytes;
while( p[bytes++] ) {
for( bytes=0; p[bytes]; bytes++ ) {
/* EMPTY */ ;
}