summaryrefslogtreecommitdiffstats
path: root/sys/netatalk/at_proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netatalk/at_proto.c')
-rw-r--r--sys/netatalk/at_proto.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/sys/netatalk/at_proto.c b/sys/netatalk/at_proto.c
index 19fbcff..39b0dd6 100644
--- a/sys/netatalk/at_proto.c
+++ b/sys/netatalk/at_proto.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 1990,1991 Regents of The University of Michigan.
+ * Copyright (c) 1990, 1991 Regents of The University of Michigan.
* All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this software and
@@ -39,16 +39,16 @@
static struct domain atalkdomain;
static struct protosw atalksw[] = {
- {
- /* Identifiers */
- .pr_type = SOCK_DGRAM,
- .pr_domain = &atalkdomain,
- .pr_protocol = ATPROTO_DDP,
- .pr_flags = PR_ATOMIC|PR_ADDR,
- .pr_output = ddp_output,
- .pr_init = ddp_init,
- .pr_usrreqs = &ddp_usrreqs
- },
+ {
+ /* Identifiers */
+ .pr_type = SOCK_DGRAM,
+ .pr_domain = &atalkdomain,
+ .pr_protocol = ATPROTO_DDP,
+ .pr_flags = PR_ATOMIC|PR_ADDR,
+ .pr_output = ddp_output,
+ .pr_init = ddp_init,
+ .pr_usrreqs = &ddp_usrreqs,
+ },
};
static struct domain atalkdomain = {
@@ -58,8 +58,7 @@ static struct domain atalkdomain = {
.dom_protoswNPROTOSW = &atalksw[sizeof(atalksw)/sizeof(atalksw[0])],
.dom_rtattach = rn_inithead,
.dom_rtoffset = offsetof(struct sockaddr_at, sat_addr) << 3,
- .dom_maxrtkey = sizeof(struct sockaddr_at)
+ .dom_maxrtkey = sizeof(struct sockaddr_at),
};
DOMAIN_SET(atalk);
-
OpenPOWER on IntegriCloud