diff options
Diffstat (limited to 'lib/ldb')
-rw-r--r-- | lib/ldb/common/ldb_controls.c | 18 | ||||
-rw-r--r-- | lib/ldb/include/ldb_private.h | 1 |
2 files changed, 0 insertions, 19 deletions
diff --git a/lib/ldb/common/ldb_controls.c b/lib/ldb/common/ldb_controls.c index d4fc21f58e..5b5f3578d6 100644 --- a/lib/ldb/common/ldb_controls.c +++ b/lib/ldb/common/ldb_controls.c @@ -1018,27 +1018,9 @@ struct ldb_control *ldb_parse_control_from_string(struct ldb_context *ldb, TALLO return ctrl; } - - /* support a raw OID */ - if (isdigit(control_strings[0])) { - const char *p = strchr(control_strings, ':'); - if (p == NULL) { - goto failed; - } - if (strspn(control_strings, "0123456789.") != (p-control_strings)) { - goto failed; - } - ctrl->oid = talloc_strndup(ctrl, control_strings, p-control_strings); - ctrl->critical = (p[1]=='1'?1:0); - ctrl->data = NULL; - return ctrl; - } - /* * When no matching control has been found. */ -failed: - talloc_free(ctrl); return NULL; } diff --git a/lib/ldb/include/ldb_private.h b/lib/ldb/include/ldb_private.h index db2457d6df..cafc020e29 100644 --- a/lib/ldb/include/ldb_private.h +++ b/lib/ldb/include/ldb_private.h @@ -40,7 +40,6 @@ #include "replace.h" #include "system/filesys.h" #include "system/time.h" -#include "system/locale.h" #include "ldb.h" #include "ldb_module.h" |