]> code.citadel.org Git - citadel.git/commitdiff
* serv_network.c: added a missing \n in log output
authorArt Cancro <ajc@citadel.org>
Fri, 17 Sep 2004 04:14:19 +0000 (04:14 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 17 Sep 2004 04:14:19 +0000 (04:14 +0000)
citadel/ChangeLog
citadel/serv_network.c

index 124ed6f0d0044a9ff4b1dfd58cdd812421eef239..180b70a4d8da7ed97793ab56fd58c88ad4b3ebb9 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 625.25  2004/09/17 04:14:18  ajc
+ * serv_network.c: added a missing \n in log output
+
  Revision 625.24  2004/09/17 03:54:47  ajc
  * citadel-openldap.schema: replaced.  Dunno why it was missing.
  * serv_calendar.c: fixed a return with no value for a function returning
@@ -6091,3 +6094,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index 202c77588f3b4f9ccfcc5927b356274aac654d1e..145e2eff67491ece0e6f84e51505aac25aace1ae 100644 (file)
@@ -290,7 +290,7 @@ int is_valid_node(char *nexthop, char *secret, char *node) {
         * First try the neighbor nodes
         */
        if (working_ignetcfg == NULL) {
-               lprintf(CTDL_ERR, "working_ignetcfg is NULL!");
+               lprintf(CTDL_ERR, "working_ignetcfg is NULL!\n");
                if (nexthop != NULL) {
                        strcpy(nexthop, "");
                }
@@ -1735,7 +1735,7 @@ void cmd_netp(char *cmdbuf)
 
        safestrncpy(CC->net_node, node, sizeof CC->net_node);
        network_talking_to(node, NTT_ADD);
-       lprintf(CTDL_NOTICE, "Network node <%s> logged in", CC->net_node);
+       lprintf(CTDL_NOTICE, "Network node <%s> logged in\n", CC->net_node);
        cprintf("%d authenticated as network node '%s'\n", CIT_OK,
                CC->net_node);
 }