diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-10-02 17:48:49 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-10-25 21:02:43 +0200 |
commit | 8a05fd320a44636d120a18eb7e9956c7b35b3138 (patch) | |
tree | 58f77c880ecea276ab4323f465b743001894d04e /src/providers/ad | |
parent | dd2f33603228005a44675f1484c294ea647dbce3 (diff) | |
download | sssd-8a05fd320a44636d120a18eb7e9956c7b35b3138.tar.gz sssd-8a05fd320a44636d120a18eb7e9956c7b35b3138.tar.xz sssd-8a05fd320a44636d120a18eb7e9956c7b35b3138.zip |
AD: Add a new option ad_access_filter
This patch just adds the option, it doesn't do anything useful yet.
Related:
https://fedorahosted.org/sssd/ticket/2082
Diffstat (limited to 'src/providers/ad')
-rw-r--r-- | src/providers/ad/ad_common.h | 1 | ||||
-rw-r--r-- | src/providers/ad/ad_opts.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/providers/ad/ad_common.h b/src/providers/ad/ad_common.h index 98aeb2165..b8b73c042 100644 --- a/src/providers/ad/ad_common.h +++ b/src/providers/ad/ad_common.h @@ -41,6 +41,7 @@ enum ad_basic_opt { AD_KEYTAB, AD_KRB5_REALM, AD_ENABLE_DNS_SITES, + AD_ACCESS_FILTER, AD_OPTS_BASIC /* opts counter */ }; diff --git a/src/providers/ad/ad_opts.h b/src/providers/ad/ad_opts.h index f3b6cd616..8022a1627 100644 --- a/src/providers/ad/ad_opts.h +++ b/src/providers/ad/ad_opts.h @@ -35,6 +35,7 @@ struct dp_option ad_basic_opts[] = { { "krb5_keytab", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING}, { "ad_enable_dns_sites", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, + { "ad_access_filter", DP_OPT_STRING, NULL_STRING, NULL_STRING}, DP_OPTION_TERMINATOR }; |