summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-06-04 21:56:06 +0200
committerMartin Mares <mj@ucw.cz>2000-06-04 21:56:06 +0200
commitdf49d4e14b7c24f8ca958870fd1e9ddc84df1f1b (patch)
treecb5c1211db86aae3848564814fb048c101960d82 /proto/rip
parent201187c55837587d8f88775cd957d9c8e423c254 (diff)
downloadbird-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/rip')
-rw-r--r--proto/rip/auth.c19
-rw-r--r--proto/rip/rip.h2
2 files changed, 10 insertions, 11 deletions
diff --git a/proto/rip/auth.c b/proto/rip/auth.c
index 89a9af9..994021e 100644
--- a/proto/rip/auth.c
+++ b/proto/rip/auth.c
@@ -4,7 +4,6 @@
* Copyright (c) 1999 Pavel Machek <pavel@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
- *
*/
#define LOCAL_DEBUG
@@ -38,11 +37,11 @@ rip_incoming_authentication( struct proto *p, struct rip_block_auth *block, stru
struct password_item *passwd = get_best_password( P_CF->passwords, 0 );
DBG( "Plaintext passwd" );
if (!passwd) {
- log( L_AUTH "no passwords set and password authentication came\n" );
+ log( L_AUTH "No passwords set and password authentication came" );
return 1;
}
if (strncmp( (char *) (&block->packetlen), passwd->password, 16)) {
- log( L_AUTH "Passwd authentication failed!\n" );
+ log( L_AUTH "Passwd authentication failed!" );
DBG( "Expected %s, got %s\n", passwd->password, &block->packetlen );
return 1;
}
@@ -55,13 +54,13 @@ rip_incoming_authentication( struct proto *p, struct rip_block_auth *block, stru
struct rip_md5_tail *tail;
if (block->packetlen != PACKETLEN(num)) {
- log( L_ERR "packetlen in md5 does not match computed value\n" );
+ log( L_ERR "Packet length in MD5 does not match computed value" );
return 1;
}
tail = (struct rip_md5_tail *) ((char *) packet + (block->packetlen - sizeof(struct rip_block_auth)));
if ((tail->mustbeFFFF != 0xffff) || (tail->mustbe0001 != 0x0001)) {
- log( L_ERR "md5 tail signature is not there\n" );
+ log( L_ERR "MD5 tail signature is not there" );
return 1;
}
@@ -73,10 +72,10 @@ rip_incoming_authentication( struct proto *p, struct rip_block_auth *block, stru
if (block->seq) {
struct neighbor *neigh = neigh_find(p, &whotoldme, 0);
if (!neigh) {
- log( L_AUTH "Non-neighbour md5 checksummed packet?\n" );
+ log( L_AUTH "Non-neighbour MD5 checksummed packet?" );
} else {
if (neigh->aux > block->seq) {
- log( L_AUTH "md5 prottected packet with lower numbers\n" );
+ log( L_AUTH "MD5 protected packet with lower numbers" );
return 0;
}
neigh->aux = block->seq;
@@ -120,7 +119,7 @@ rip_outgoing_authentication( struct proto *p, struct rip_block_auth *block, stru
DBG( "Outgoing authentication: " );
if (!passwd) {
- log( L_ERR "no suitable password found for authentication\n" );
+ log( L_ERR "No suitable password found for authentication" );
return PACKETLEN(num);
}
@@ -137,7 +136,7 @@ rip_outgoing_authentication( struct proto *p, struct rip_block_auth *block, stru
static int sequence = 0;
if (num > PACKET_MD5_MAX)
- bug( "we can not add MD5 authentication to this long packet\n" );
+ bug( "We can not add MD5 authentication to this long packet" );
block->keyid = passwd->id;
block->authlen = 20;
@@ -157,6 +156,6 @@ rip_outgoing_authentication( struct proto *p, struct rip_block_auth *block, stru
return PACKETLEN(num) + block->authlen;
}
default:
- bug( "Uknown authtype in outgoing authentication?\n" );
+ bug( "Unknown authtype in outgoing authentication?" );
}
}
diff --git a/proto/rip/rip.h b/proto/rip/rip.h
index 9a07040..67fd5b0 100644
--- a/proto/rip/rip.h
+++ b/proto/rip/rip.h
@@ -152,7 +152,7 @@ struct rip_proto {
#define RIP_MAGIC 81861253
-#define CHK_MAGIC do { if (P->magic != RIP_MAGIC) bug( "Not enough magic\n" ); } while (0)
+#define CHK_MAGIC do { if (P->magic != RIP_MAGIC) bug( "Not enough magic" ); } while (0)
void rip_init_instance(struct proto *p);
void rip_init_config(struct rip_proto_config *c);