From: Howard Chu Date: Sat, 27 Aug 2005 01:18:47 +0000 (+0000) Subject: Fix typos in error messages X-Git-Tag: OPENLDAP_REL_ENG_2_2_MP~559 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=12beb27e46693db95bbe604ebc22cf1672e553b9;hp=f17ffeb925c33551dd8644f502b0f5b8cccfa5d8;p=openldap Fix typos in error messages --- diff --git a/servers/slapd/controls.c b/servers/slapd/controls.c index 3bfbdf179e..5e24959560 100644 --- a/servers/slapd/controls.c +++ b/servers/slapd/controls.c @@ -1333,7 +1333,7 @@ static int parseSearchOptions ( ber_tag_t tag; if ( ctrl->ldctl_value.bv_len == 0 ) { - rs->sr_text = "searchOptions control value not empty"; + rs->sr_text = "searchOptions control value is empty (or absent)"; return LDAP_PROTOCOL_ERROR; } @@ -1367,7 +1367,7 @@ static int parseSearchOptions ( * including: * LDAP_SEARCH_FLAG_PHANTOM_ROOM */ - rs->sr_text = "searchOptions contained unrecongized flag"; + rs->sr_text = "searchOptions contained unrecognized flag"; return LDAP_UNWILLING_TO_PERFORM; }