diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-05-03 21:15:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-05-03 21:15:12 +0000 |
commit | 492edca4204c3a1bbefa82cd0298b4bc5044d58c (patch) | |
tree | cc04c242a406e06fa0b22325e0c00875a2d3ca78 /sys/net/if_faith.c | |
parent | 59195b3dfca23fbd322412cb1fc7f5fc476edee8 (diff) |
string fixes; tedu ok
Diffstat (limited to 'sys/net/if_faith.c')
-rw-r--r-- | sys/net/if_faith.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c index 45d6d7a5192..32ab43db223 100644 --- a/sys/net/if_faith.c +++ b/sys/net/if_faith.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_faith.c,v 1.13 2003/05/03 01:43:07 itojun Exp $ */ +/* $OpenBSD: if_faith.c,v 1.14 2003/05/03 21:15:11 deraadt Exp $ */ /* * Copyright (c) 1982, 1986, 1993 * The Regents of the University of California. All rights reserved. @@ -92,7 +92,7 @@ faithattach(faith) for (i = 0; i < NFAITH; i++) { ifp = &faithif[i]; bzero(ifp, sizeof(faithif[i])); - sprintf(ifp->if_xname, "faith%d", i); + snprintf(ifp->if_xname, sizeof ifp->if_xname, "faith%d", i); ifp->if_mtu = FAITHMTU; /* Change to BROADCAST experimentaly to announce its prefix. */ ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST; |