summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2005-11-04 18:57:48 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2005-11-04 18:57:48 +0000
commit385bae35dd0d5893b81bb89abd41ae07ee69e256 (patch)
treee78a9c75548e8a3a0cdcca7b2fee04655b16bb57
parentc967724d8a9d9ddc34af25b1015aa6f3f8a90bfe (diff)
downloadds-385bae35dd0d5893b81bb89abd41ae07ee69e256.tar.gz
ds-385bae35dd0d5893b81bb89abd41ae07ee69e256.tar.xz
ds-385bae35dd0d5893b81bb89abd41ae07ee69e256.zip
Fixed the build: removed __attribute__ from the previous checkin.Directory71Sp1RtmRhelHpuxSolaris
-rw-r--r--ldap/servers/slapd/saslbind.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ldap/servers/slapd/saslbind.c b/ldap/servers/slapd/saslbind.c
index 9f991204..c0383031 100644
--- a/ldap/servers/slapd/saslbind.c
+++ b/ldap/servers/slapd/saslbind.c
@@ -108,11 +108,11 @@ void sasl_mutex_free(void *mutex)
* entry from the internal database, at the same time we get any other
* properties we need - it's more efficient that way.
*/
-static void ids_auxprop_lookup(void *glob_context __attribute__((unused)),
- sasl_server_params_t *sparams __attribute__((unused)),
- unsigned flags __attribute__((unused)),
- const char *user __attribute__((unused)),
- unsigned ulen __attribute__((unused)))
+static void ids_auxprop_lookup(void *glob_context,
+ sasl_server_params_t *sparams,
+ unsigned flags,
+ const char *user,
+ unsigned ulen)
{
/* do nothing - we don't need auxprops - we just do this to avoid
sasldb_auxprop_lookup */
@@ -128,11 +128,11 @@ static sasl_auxprop_plug_t ids_auxprop_plugin = {
NULL /* auxprop_store */
};
-int ids_auxprop_plug_init(const sasl_utils_t *utils __attribute__((unused)),
+int ids_auxprop_plug_init(const sasl_utils_t *utils,
int max_version,
int *out_version,
sasl_auxprop_plug_t **plug,
- const char *plugname __attribute__((unused)))
+ const char *plugname)
{
if(!out_version || !plug) return SASL_BADPARAM;