Skip to content

Commit

Permalink
[NET] RXRPC: Fix whitespace errors.
Browse files Browse the repository at this point in the history
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
  • Loading branch information
YOSHIFUJI Hideaki committed Jul 19, 2007
1 parent 6140efb commit 1c89964
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 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 1c89964

Please sign in to comment.