diff options
author | 2006-05-26 01:10:01 +0000 | |
---|---|---|
committer | 2006-05-26 01:10:01 +0000 | |
commit | f72c60a56a8c1fb2d49886f8d218ac393425bcb2 (patch) | |
tree | 51b02bd1ad91ce5f727fd355b04d09deddce0329 | |
parent | \<char> is <char> except for \<newline> -- no exceptions. much like how (diff) | |
download | wireguard-openbsd-f72c60a56a8c1fb2d49886f8d218ac393425bcb2.tar.xz wireguard-openbsd-f72c60a56a8c1fb2d49886f8d218ac393425bcb2.zip |
prettier printing
-rw-r--r-- | sys/nfs/nfs_boot.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/nfs/nfs_boot.c b/sys/nfs/nfs_boot.c index 5cdd4ce00ea..9fe58817622 100644 --- a/sys/nfs/nfs_boot.c +++ b/sys/nfs/nfs_boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_boot.c,v 1.16 2004/11/04 13:14:29 pedro Exp $ */ +/* $OpenBSD: nfs_boot.c,v 1.17 2006/05/26 01:10:01 deraadt Exp $ */ /* $NetBSD: nfs_boot.c,v 1.26 1996/05/07 02:51:25 thorpej Exp $ */ /* @@ -152,7 +152,8 @@ nfs_boot_init(nd, procp) if (ifp == NULL) panic("nfs_boot: no suitable interface"); bcopy(ifp->if_xname, ireq.ifr_name, IFNAMSIZ); - printf("nfs_boot: using network interface '%s'\n", ireq.ifr_name); + printf("nfs_boot: using interface %s, with revarp & bootparams\n", + ireq.ifr_name); /* * Bring up the interface. |