diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-24 23:44:08 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-24 23:44:08 +0000 |
commit | 703b38ceca0d463d953eb2443d2ab72b8e841387 (patch) | |
tree | f5e65b890d9296f49ca409b36d84156df624bd51 | |
parent | ba3170cb32e355cb1dab8bd0ee0917c0d922c8d2 (diff) |
ioctlbuffer renamed.
-rw-r--r-- | sbin/pfctl/pfctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index fd47b6287d5..bca77e75e5f 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.4 2001/06/24 23:20:57 provos Exp $ */ +/* $OpenBSD: pfctl.c,v 1.5 2001/06/24 23:44:07 art Exp $ */ /* * Copyright (c) 2001, Daniel Hartmeier @@ -130,9 +130,9 @@ int main(int argc, char *argv[]) { int dev; - struct ioctlbuffer *ub; + struct pfioc *ub; u_int16_t n = 0; - ub = malloc(sizeof(struct ioctlbuffer)); + ub = malloc(sizeof(struct pfioc)); if (ub == NULL) { printf("ERROR: malloc() failed\n"); return (1); |