diff options
author | Werner Koch <[email protected]> | 2023-06-07 08:03:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-06-07 08:03:48 +0000 |
commit | 207c99567ced260aab04c471c77f179943d492f4 (patch) | |
tree | cf9b087dfefb4c73f1d1351b9a742e0fa29e6ace /common/name-value.c | |
parent | common: New function substitute_vars. (diff) | |
download | gnupg-207c99567ced260aab04c471c77f179943d492f4.tar.gz gnupg-207c99567ced260aab04c471c77f179943d492f4.zip |
dirmngr: Extend the AD_QUERY command.
* dirmngr/server.c (cmd_ad_query): Add options --help and --subst.
(cmd_getinfo): Add sub-command "sid".
* dirmngr/ks-engine.h (KS_GET_FLAG_SUBST): New.
* dirmngr/ks-engine-ldap.c (ks_ldap_help_variables): New.
(getval_for_filter): New.
(map_rid_to_dn): New.
(ks_ldap_query): Support variables.
--
The new variables features makes it easier to write AD queries without
requiring domain specific expressions.
Diffstat (limited to 'common/name-value.c')
-rw-r--r-- | common/name-value.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/name-value.c b/common/name-value.c index 6f3df5a8d..0dffc63b4 100644 --- a/common/name-value.c +++ b/common/name-value.c @@ -616,7 +616,7 @@ nve_next_value (nve_t entry, const char *name) /* Return the string for the first entry in NVC with NAME. If an * entry with NAME is missing in NVC or its value is the empty string - * NULL is returned. Note that the The returned string is a pointer + * NULL is returned. Note that the the returned string is a pointer * into NVC. */ const char * nvc_get_string (nvc_t nvc, const char *name) |