]> git.sur5r.net Git - openldap/commitdiff
Fix unterminated debug msgs
authorHoward Chu <hyc@openldap.org>
Wed, 16 Mar 2005 21:29:32 +0000 (21:29 +0000)
committerHoward Chu <hyc@openldap.org>
Wed, 16 Mar 2005 21:29:32 +0000 (21:29 +0000)
servers/slapd/config.c

index 53616faadcc9ee6bb5eb07d9ad51fdc4fb61b10f..84dc1ca5b93b31c42e5b15b50749b8d6f072fe18 100644 (file)
@@ -219,7 +219,7 @@ int config_add_vals(ConfigTable *Conf, ConfigArgs *c) {
                rc = (*((ConfigDriver*)Conf->arg_item))(c);
                if(c->be == frontendDB) c->be = NULL;
                if(rc) {
-                       Debug(LDAP_DEBUG_CONFIG, "%s: handler for <%s> exited with %d!",
+                       Debug(LDAP_DEBUG_CONFIG, "%s: handler for <%s> exited with %d!\n",
                                c->log, Conf->name, rc);
                        return(ARG_BAD_CONF);
                }
@@ -231,7 +231,7 @@ int config_add_vals(ConfigTable *Conf, ConfigArgs *c) {
                else if (c->bi)
                        ptr = c->bi->bi_private;
                else {
-                       Debug(LDAP_DEBUG_CONFIG, "%s: offset for <%s> missing base pointer!",
+                       Debug(LDAP_DEBUG_CONFIG, "%s: offset for <%s> missing base pointer!\n",
                                c->log, Conf->name, 0);
                        return(ARG_BAD_CONF);
                }