Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet inpcb: replace leading white spaces with tabs
details: https://anonhg.NetBSD.org/src/rev/f013e34face0
branches: trunk
changeset: 372257:f013e34face0
user: ozaki-r <ozaki-r%NetBSD.org@localhost>
date: Fri Nov 04 09:05:04 2022 +0000
description:
inpcb: replace leading white spaces with tabs
diffstat:
sys/netinet/in_pcb.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (37 lines):
diff -r 0a78aae3bf5d -r f013e34face0 sys/netinet/in_pcb.c
--- a/sys/netinet/in_pcb.c Fri Nov 04 09:04:27 2022 +0000
+++ b/sys/netinet/in_pcb.c Fri Nov 04 09:05:04 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: in_pcb.c,v 1.200 2022/11/04 09:04:27 ozaki-r Exp $ */
+/* $NetBSD: in_pcb.c,v 1.201 2022/11/04 09:05:04 ozaki-r Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -93,7 +93,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in_pcb.c,v 1.200 2022/11/04 09:04:27 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in_pcb.c,v 1.201 2022/11/04 09:05:04 ozaki-r Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -619,15 +619,15 @@
in4p_faddr(inp) = sin->sin_addr;
inp->inp_fport = sin->sin_port;
- /* Late bind, if needed */
+ /* Late bind, if needed */
if (inp->inp_bindportonsend) {
- struct sockaddr_in lsin = *((const struct sockaddr_in *)
+ struct sockaddr_in lsin = *((const struct sockaddr_in *)
inp->inp_socket->so_proto->pr_domain->dom_sa_any);
lsin.sin_addr = in4p_laddr(inp);
lsin.sin_port = 0;
if ((error = inpcb_bind_port(inp, &lsin, l->l_cred)) != 0)
- return error;
+ return error;
}
inpcb_set_state(inp, INP_CONNECTED);
Home |
Main Index |
Thread Index |
Old Index