diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-04-08 14:31:55 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-04-08 14:31:55 +0000 |
commit | 34fe724f25d91e8ccb959ccc4dbe829541f8faa7 (patch) | |
tree | 43a4a33bfc77e60254dee1f810de5c8b9eef8add /sys/arch/luna88k | |
parent | ccf2ce30e45cf5040831618d665bbd74527afa1c (diff) |
Split the cdev makro for bpftun into two seperate definitions. tun(4) and
bpf(4) are different enough so that the split makes sense -- this is necessary
to make bpf(4) cloneable.
requested deraadt@, OK thib@
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r-- | sys/arch/luna88k/luna88k/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/luna88k/luna88k/conf.c b/sys/arch/luna88k/luna88k/conf.c index 9101d501f43..5eca138aeca 100644 --- a/sys/arch/luna88k/luna88k/conf.c +++ b/sys/arch/luna88k/luna88k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.7 2007/05/28 22:26:03 todd Exp $ */ +/* $OpenBSD: conf.c,v 1.8 2008/04/08 14:31:54 claudio Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -121,8 +121,8 @@ struct cdevsw cdevsw[] = cdev_disk_init(NVND,vnd), /* 19: vnode disk */ cdev_tape_init(NST,st), /* 20: SCSI tape */ cdev_fd_init(1,filedesc), /* 21: file descriptor pseudo-dev */ - cdev_bpftun_init(NBPFILTER,bpf),/* 22: berkeley packet filter */ - cdev_bpftun_init(NTUN,tun), /* 23: network tunnel */ + cdev_bpf_init(NBPFILTER,bpf), /* 22: berkeley packet filter */ + cdev_tun_init(NTUN,tun), /* 23: network tunnel */ cdev_lkm_init(NLKM,lkm), /* 24: loadable module driver */ cdev_notdef(), /* 25 */ cdev_notdef(), /* 26 */ |