diff options
author | Cedric Berger <cedric@cvs.openbsd.org> | 2003-01-20 20:29:53 +0000 |
---|---|---|
committer | Cedric Berger <cedric@cvs.openbsd.org> | 2003-01-20 20:29:53 +0000 |
commit | 8f07ed976ff2426c745d4d7f3971968b089c3c3c (patch) | |
tree | db048e5af5511db6e7d8abb51947f0c822b20f4a | |
parent | d74d9d8fc636aec561b923911e72076143cfc5a0 (diff) |
It's difficult to create a table by changing its flags.
-rw-r--r-- | sys/net/pf_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf_ioctl.c b/sys/net/pf_ioctl.c index ca6b5080069..9633f020980 100644 --- a/sys/net/pf_ioctl.c +++ b/sys/net/pf_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ioctl.c,v 1.48 2003/01/09 18:36:48 henning Exp $ */ +/* $OpenBSD: pf_ioctl.c,v 1.49 2003/01/20 20:29:52 cedric Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1769,7 +1769,7 @@ pfioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct proc *p) error = pfr_set_tflags(io->pfrio_buffer, io->pfrio_size, io->pfrio_setflag, io->pfrio_clrflag, &io->pfrio_nchange, - &io->pfrio_nadd, io->pfrio_flags); + &io->pfrio_ndel, io->pfrio_flags); break; } |