Skip to content

Commit

Permalink
core: fixed misleading indentation for return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Sep 15, 2016
1 parent 1b124e9 commit fc65a11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tls_hooks.c
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2007 iptelorg GmbH
* Copyright (C) 2007 iptelorg GmbH
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down Expand Up @@ -34,7 +34,7 @@ static int tls_hooks_loaded=0;

int register_tls_hooks(struct tls_hooks* h)
{
if (!tls_disable){
if (!tls_disable) {
tls_hook=*h;
tls_hooks_loaded++;
return 0;
Expand All @@ -47,7 +47,7 @@ int tls_init(struct socket_info* si)
{
if (tls_hook.init_si)
return tls_hook.init_si(si);
return -1;
return -1;
}

int tls_has_init_si()
Expand Down

0 comments on commit fc65a11

Please sign in to comment.