diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-17 09:57:14 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-17 09:57:14 +0000 |
commit | fbb0c287d621006e93e413c445e942dc06d39877 (patch) | |
tree | 1c562e62b0769ba6e89c86717cf7c5b2a71d9226 /sys/net/if_pfsync.c | |
parent | 4a1d9e6f74632234e5154114e6e0d008d93caddb (diff) |
Remove the "multicast_" prefix from the fields a multicast-only struct.
Prodded by claudio@ and mikeb@
Diffstat (limited to 'sys/net/if_pfsync.c')
-rw-r--r-- | sys/net/if_pfsync.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_pfsync.c b/sys/net/if_pfsync.c index 0653b4cb8fa..f9a3d2a4c45 100644 --- a/sys/net/if_pfsync.c +++ b/sys/net/if_pfsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pfsync.c,v 1.213 2014/12/17 09:45:59 mpi Exp $ */ +/* $OpenBSD: if_pfsync.c,v 1.214 2014/12/17 09:57:13 mpi Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -1402,8 +1402,8 @@ pfsyncioctl(struct ifnet *ifp, u_long cmd, caddr_t data) } imo->imo_num_memberships++; imo->imo_ifidx = sc->sc_sync_if->if_index; - imo->imo_multicast_ttl = PFSYNC_DFLTTL; - imo->imo_multicast_loop = 0; + imo->imo_ttl = PFSYNC_DFLTTL; + imo->imo_loop = 0; } ip = &sc->sc_template; |