From 79262c57030a48fd2eae180e617928701362c471 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 24 Apr 2003 12:43:30 +0000 Subject: [PATCH] Fix typo --- servers/slapd/schema_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 652c341232..fea000a757 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -1486,7 +1486,7 @@ integerValidate( } } else if ( val.bv_val[0] == '0' ) { - if( val.bv_len == 1 ) { /* "0" */ + if( val.bv_len > 1 ) { /* "0" */ return LDAP_INVALID_SYNTAX; } -- 2.39.5