summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/back-nis.c4
-rw-r--r--src/back-sch.c4
-rw-r--r--src/plugin.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/back-nis.c b/src/back-nis.c
index 40df624..df5df3f 100644
--- a/src/back-nis.c
+++ b/src/back-nis.c
@@ -815,11 +815,11 @@ backend_update_params(Slapi_PBlock *pb, struct plugin_state *state)
DEFAULT_PLUGIN_USE_BETXNS);
if (state->use_be_txns && !use_be_txns) {
slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id,
- "turning off betxn support");
+ "turning off betxn support\n");
}
if (!state->use_be_txns && use_be_txns) {
slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id,
- "turning on betxn support");
+ "turning on betxn support\n");
}
state->use_be_txns = use_be_txns;
slapi_entry_free(our_entry);
diff --git a/src/back-sch.c b/src/back-sch.c
index fede75d..142bdb9 100644
--- a/src/back-sch.c
+++ b/src/back-sch.c
@@ -869,11 +869,11 @@ backend_update_params(Slapi_PBlock *pb, struct plugin_state *state)
DEFAULT_PLUGIN_USE_BETXNS);
if (state->use_be_txns && !use_be_txns) {
slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id,
- "turning off betxn support");
+ "turning off betxn support\n");
}
if (!state->use_be_txns && use_be_txns) {
slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id,
- "turning on betxn support");
+ "turning on betxn support\n");
}
state->use_be_txns = use_be_txns;
slapi_entry_free(our_entry);
diff --git a/src/plugin.h b/src/plugin.h
index 4d62cf3..b54e2ad 100644
--- a/src/plugin.h
+++ b/src/plugin.h
@@ -32,7 +32,7 @@ struct plugin_state {
char *plugin_base;
Slapi_ComponentId *plugin_identity;
Slapi_PluginDesc *plugin_desc;
- int use_be_txns: 1;
+ unsigned int use_be_txns: 1;
/* NIS-specific data. */
struct wrapped_thread *tid;