Deleted Added
full compact
blacklistctl.c (301172) blacklistctl.c (301603)
1/* $NetBSD: blacklistctl.c,v 1.20 2016/04/04 15:52:56 christos Exp $ */
2
3/*-
4 * Copyright (c) 2015 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas.

--- 82 unchanged lines hidden (view full) ---

91 while ((o = getopt(argc, argv, "abD:dnrw")) != -1)
92 switch (o) {
93 case 'a':
94 all = 1;
95 blocked = 0;
96 break;
97 case 'b':
98 blocked = 1;
1/* $NetBSD: blacklistctl.c,v 1.20 2016/04/04 15:52:56 christos Exp $ */
2
3/*-
4 * Copyright (c) 2015 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas.

--- 82 unchanged lines hidden (view full) ---

91 while ((o = getopt(argc, argv, "abD:dnrw")) != -1)
92 switch (o) {
93 case 'a':
94 all = 1;
95 blocked = 0;
96 break;
97 case 'b':
98 blocked = 1;
99 break;
99 case 'D':
100 dbname = optarg;
101 break;
100 case 'D':
101 dbname = optarg;
102 break;
102 break;
103 case 'd':
104 debug++;
105 break;
106 case 'n':
107 noheader = 1;
108 break;
109 case 'r':
110 remain = 1;

--- 41 unchanged lines hidden ---
103 case 'd':
104 debug++;
105 break;
106 case 'n':
107 noheader = 1;
108 break;
109 case 'r':
110 remain = 1;

--- 41 unchanged lines hidden ---