diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-07-10 08:22:21 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-07-10 08:22:21 +0000 |
| commit | ada79f6035ad6dc6222f229ff6a427825f4d5ba9 (patch) | |
| tree | 272bb51482996eac1bef2fd2872bdae70d606e01 | |
| parent | 0074080b441d46812f85759598213c31878fd33a (diff) | |
Notes
| -rw-r--r-- | sbin/ipfw/ipfw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ipfw/ipfw.c b/sbin/ipfw/ipfw.c index 47a72891ee9f..4507cb6864ce 100644 --- a/sbin/ipfw/ipfw.c +++ b/sbin/ipfw/ipfw.c @@ -654,7 +654,7 @@ list(ac, av) if (rulenum != 0 && rulenum != p->pipe_nr) continue; if (p->if_name[0] != '\0') - sprintf(buf, p->if_name); + sprintf(buf, "%s", p->if_name); else if (b == 0) sprintf(buf, "unlimited"); else if (b >= 1000000) |
