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/iface.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/iface.c')
-rw-r--r-- | proto/ospf/iface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 011fd4b..f7be7eb 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -362,7 +362,7 @@ ospf_if_notify(struct proto *p, unsigned flags, struct iface *iface) log("%s: Huh? could not open mc socket on interface %s?", p->name, iface->name); mb_free(ifa); - log("%s: Ignoring this interface\n", p->name); + log("%s: Ignoring this interface.", p->name); return; } ifa->dr_sk=NULL; @@ -372,7 +372,7 @@ ospf_if_notify(struct proto *p, unsigned flags, struct iface *iface) log("%s: Huh? could not open ip socket on interface %s?", p->name, iface->name); mb_free(ifa); - log("%s: Ignoring this interface\n", p->name); + log("%s: Ignoring this interface", p->name); return; } |