diff options
author | denis <denis@cvs.openbsd.org> | 2019-05-12 11:27:09 +0000 |
---|---|---|
committer | denis <denis@cvs.openbsd.org> | 2019-05-12 11:27:09 +0000 |
commit | c22ac024fcd09edae733d20e72363133b8039e1c (patch) | |
tree | 6fffc5fcc260c12e0dcdff8da2105e753e1ed6f4 | |
parent | 5778da215701719399ae5206bea9125fc3397437 (diff) |
fix typo
OK claudio@ deraadt@
-rw-r--r-- | usr.sbin/ripd/printconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/printconf.c b/usr.sbin/ripd/printconf.c index ace33f78400..f6eb62c305a 100644 --- a/usr.sbin/ripd/printconf.c +++ b/usr.sbin/ripd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.7 2018/12/31 20:34:16 remi Exp $ */ +/* $OpenBSD: printconf.c,v 1.8 2019/05/12 11:27:08 denis Exp $ */ /* * Copyright (c) 2004, 2005, 2006 Esben Norby <norby@openbsd.org> @@ -88,7 +88,7 @@ print_redistribute(struct ripd_conf *conf) printf("redistribute default\n"); break; case REDIST_ADDR: - printf("%ssredistribute %s/%d\n", + printf("%sredistribute %s/%d\n", print_no(r->type), inet_ntoa(r->addr), mask2prefixlen(r->mask.s_addr)); break; |