summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-01-27 09:08:48 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-01-27 09:10:37 -0500
commit3d55c65fbe50074f6a63dcb8ae866c038a9e6b2b (patch)
treebe631521cfd5fb956943c95b6a21e0d3a70058c2
parent3b121852048a7931f8a608527b760963e2ed2bb4 (diff)
downloadsssd-3d55c65fbe50074f6a63dcb8ae866c038a9e6b2b.tar.gz
sssd-3d55c65fbe50074f6a63dcb8ae866c038a9e6b2b.tar.xz
sssd-3d55c65fbe50074f6a63dcb8ae866c038a9e6b2b.zip
Rename sss_dp_type to sss_dp_sudo_type
I pushed an older version of this patch that had the incorrect name. This is the interdiff.
-rw-r--r--src/responder/sudo/sudosrv_dp.c4
-rw-r--r--src/responder/sudo/sudosrv_private.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/responder/sudo/sudosrv_dp.c b/src/responder/sudo/sudosrv_dp.c
index f544d2930..fd6ce4e59 100644
--- a/src/responder/sudo/sudosrv_dp.c
+++ b/src/responder/sudo/sudosrv_dp.c
@@ -34,7 +34,7 @@ struct sss_dp_get_sudoers_info {
struct sss_domain_info *dom;
bool fast_reply;
- enum sss_dp_type type;
+ enum sss_dp_sudo_type type;
const char *name;
};
@@ -46,7 +46,7 @@ sss_dp_get_sudoers_send(TALLOC_CTX *mem_ctx,
struct resp_ctx *rctx,
struct sss_domain_info *dom,
bool fast_reply,
- enum sss_dp_type type,
+ enum sss_dp_sudo_type type,
const char *name)
{
struct tevent_req *req;
diff --git a/src/responder/sudo/sudosrv_private.h b/src/responder/sudo/sudosrv_private.h
index fc4134b64..23b421b52 100644
--- a/src/responder/sudo/sudosrv_private.h
+++ b/src/responder/sudo/sudosrv_private.h
@@ -98,7 +98,7 @@ int sudosrv_response_append_attr(TALLOC_CTX *mem_ctx,
uint8_t **_response_body,
size_t *_response_len);
-enum sss_dp_type {
+enum sss_dp_sudo_type {
SSS_DP_SUDO
};
@@ -107,7 +107,7 @@ sss_dp_get_sudoers_send(TALLOC_CTX *mem_ctx,
struct resp_ctx *rctx,
struct sss_domain_info *dom,
bool fast_reply,
- enum sss_dp_type type,
+ enum sss_dp_sudo_type type,
const char *name);
errno_t