Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61758
b: refs/heads/master
c: 1c89964
h: refs/heads/master
v: v3
  • Loading branch information
YOSHIFUJI Hideaki committed Jul 19, 2007
1 parent 06b23a7 commit bb2f2d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6140efb536e7758cd300461981634ebfd4f51efa
refs/heads/master: 1c899641acd18b8d9d8a61dcb5dd8826fc6c87ea
10 changes: 5 additions & 5 deletions trunk/net/rxrpc/af_rxrpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -805,26 +805,26 @@ static int __init af_rxrpc_init(void)
}

ret = proto_register(&rxrpc_proto, 1);
if (ret < 0) {
printk(KERN_CRIT "RxRPC: Cannot register protocol\n");
if (ret < 0) {
printk(KERN_CRIT "RxRPC: Cannot register protocol\n");
goto error_proto;
}

ret = sock_register(&rxrpc_family_ops);
if (ret < 0) {
printk(KERN_CRIT "RxRPC: Cannot register socket family\n");
printk(KERN_CRIT "RxRPC: Cannot register socket family\n");
goto error_sock;
}

ret = register_key_type(&key_type_rxrpc);
if (ret < 0) {
printk(KERN_CRIT "RxRPC: Cannot register client key type\n");
printk(KERN_CRIT "RxRPC: Cannot register client key type\n");
goto error_key_type;
}

ret = register_key_type(&key_type_rxrpc_s);
if (ret < 0) {
printk(KERN_CRIT "RxRPC: Cannot register server key type\n");
printk(KERN_CRIT "RxRPC: Cannot register server key type\n");
goto error_key_type_s;
}

Expand Down

0 comments on commit bb2f2d4

Please sign in to comment.