diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-04 21:56:06 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-04 21:56:06 +0200 |
commit | df49d4e14b7c24f8ca958870fd1e9ddc84df1f1b (patch) | |
tree | cb5c1211db86aae3848564814fb048c101960d82 /proto/ospf/lsupd.c | |
parent | 201187c55837587d8f88775cd957d9c8e423c254 (diff) | |
download | bird-df49d4e14b7c24f8ca958870fd1e9ddc84df1f1b.tar bird-df49d4e14b7c24f8ca958870fd1e9ddc84df1f1b.zip |
Removed lots of trailing newlines in log messages.
Please note that the only calls which don't add newlines automatically
(i.e., don't print a full line of output) are debug() and DBG().
Diffstat (limited to 'proto/ospf/lsupd.c')
-rw-r--r-- | proto/ospf/lsupd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index 90a7b7d..ad64eed 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -64,7 +64,7 @@ flood_lsa(struct ospf_neighbor *n, struct ospf_lsa_header *hn, ospf_hash_delete(nn->lsrqh,en); if(EMPTY_SLIST(nn->lsrql)) ospf_neigh_sm(nn, INM_LOADDONE); break; - default: bug("Bug in lsa_comp?\n"); + default: bug("Bug in lsa_comp?"); } } } @@ -279,32 +279,32 @@ ospf_lsupd_rx(struct ospf_lsupd_packet *ps, struct proto *p, if(((diff+sizeof(struct ospf_lsa_header))>=size) || ((ntohs(lsa->length)+diff)>size)) - log("%s: Received lsupd from %I is too short.\n", p->name,n->ip); + log("%s: Received lsupd from %I is too short.", p->name,n->ip); lenn=ntohs(lsa->length); if((lenn<=sizeof(struct ospf_lsa_header))||(lenn!=(4*(lenn/4)))) { - log("Received LSA with bad length\n"); + log("Received LSA with bad length"); ospf_neigh_sm(n,INM_BADLSREQ); break; } /* pg 143 (1) */ if(lsa->checksum!=lsasum_check(lsa,NULL,po)) { - log("Received bad lsa checksum from %I\n",n->rid); + log("Received bad lsa checksum from %I",n->rid); continue; } /* pg 143 (2) */ if((lsa->type<LSA_T_RT)||(lsa->type>LSA_T_EXT)) { - log("Unknown LSA type from %I\n",n->rid); + log("Unknown LSA type from %I",n->rid); continue; } /* pg 143 (3) */ if((lsa->type==LSA_T_EXT)&&oa->stub) { - log("Received External LSA in stub area from %I\n",n->rid); + log("Received External LSA in stub area from %I",n->rid); continue; } ntohlsah(lsa,&lsatmp); |