diff options
author | Martin Mares <mj@ucw.cz> | 2001-08-19 13:15:24 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2001-08-19 13:15:24 +0200 |
commit | e43ae6330eaf349eafe6820465c85266eef80e07 (patch) | |
tree | ac2a601c21c65238331783593fa2774d29910700 /proto/ospf/ospf.c | |
parent | 30b773041c37d10649a16d5f28af00a25871aac7 (diff) | |
download | bird-e43ae6330eaf349eafe6820465c85266eef80e07.tar bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip |
Fix %<something>I format strings.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r-- | proto/ospf/ospf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 23e668d..7f48f01 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -836,7 +836,7 @@ ospf_sh(struct proto *p) cli_msg(-1014,"\t\tArea networks:"); WALK_LIST(anet, oa->net_list) { - cli_msg(-1014,"\t\t\t%18I/%u\t%s", anet->net, anet->mlen, + cli_msg(-1014,"\t\t\t%1I/%u\t%s", anet->net, anet->mlen, anet->hidden ? "Hidden" : "Advertise"); } } |