Fri Mar 14 13:17:18 2014 UTC ()
add missing break


(ginsbach)
diff -r1.1 -r1.2 src/usr.bin/getaddrinfo/getaddrinfo.c

cvs diff -r1.1 -r1.2 src/usr.bin/getaddrinfo/getaddrinfo.c (expand / switch to unified diff)

--- src/usr.bin/getaddrinfo/getaddrinfo.c 2013/09/30 06:19:22 1.1
+++ src/usr.bin/getaddrinfo/getaddrinfo.c 2014/03/14 13:17:18 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: getaddrinfo.c,v 1.1 2013/09/30 06:19:22 riastradh Exp $ */ 1/* $NetBSD: getaddrinfo.c,v 1.2 2014/03/14 13:17:18 ginsbach Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Taylor R. Campbell. 8 * by Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -20,27 +20,27 @@ @@ -20,27 +20,27 @@
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__RCSID("$NetBSD: getaddrinfo.c,v 1.1 2013/09/30 06:19:22 riastradh Exp $"); 33__RCSID("$NetBSD: getaddrinfo.c,v 1.2 2014/03/14 13:17:18 ginsbach Exp $");
34 34
35#include <assert.h> 35#include <assert.h>
36#include <err.h> 36#include <err.h>
37#include <errno.h> 37#include <errno.h>
38#include <limits.h> 38#include <limits.h>
39#include <netdb.h> 39#include <netdb.h>
40#include <stdbool.h> 40#include <stdbool.h>
41#include <stdint.h> 41#include <stdint.h>
42#include <stdlib.h> 42#include <stdlib.h>
43#include <string.h> 43#include <string.h>
44#include <unistd.h> 44#include <unistd.h>
45#include <util.h> 45#include <util.h>
46 46
@@ -91,26 +91,27 @@ main(int argc, char **argv) @@ -91,26 +91,27 @@ main(int argc, char **argv)
91 case 'N': 91 case 'N':
92 hints.ai_flags |= AI_NUMERICSERV; 92 hints.ai_flags |= AI_NUMERICSERV;
93 break; 93 break;
94 94
95 case 's': 95 case 's':
96 service = optarg; 96 service = optarg;
97 break; 97 break;
98 98
99 case 'p': 99 case 'p':
100 if (!parse_protocol(optarg, &hints.ai_protocol)) { 100 if (!parse_protocol(optarg, &hints.ai_protocol)) {
101 warnx("invalid protocol: %s", optarg); 101 warnx("invalid protocol: %s", optarg);
102 usage(); 102 usage();
103 } 103 }
 104 break;
104 105
105 case 'P': 106 case 'P':
106 hints.ai_flags |= AI_PASSIVE; 107 hints.ai_flags |= AI_PASSIVE;
107 break; 108 break;
108 109
109 case 't': 110 case 't':
110 if (!parse_socktype(optarg, &hints.ai_socktype)) { 111 if (!parse_socktype(optarg, &hints.ai_socktype)) {
111 warnx("invalid socket type: %s", optarg); 112 warnx("invalid socket type: %s", optarg);
112 usage(); 113 usage();
113 } 114 }
114 break; 115 break;
115 116
116 case '?': 117 case '?':