K&R style braces

This commit is contained in:
Guus Sliepen 2007-05-18 10:00:00 +00:00
parent 760dd966ef
commit f02d3ed3e1
30 changed files with 233 additions and 466 deletions

View file

@ -46,8 +46,7 @@
char *myport;
static struct event device_ev;
bool read_rsa_public_key(connection_t *c)
{
bool read_rsa_public_key(connection_t *c) {
FILE *fp;
char *fname;
char *key;
@ -147,8 +146,7 @@ bool read_rsa_public_key(connection_t *c)
return false;
}
bool read_rsa_private_key(void)
{
bool read_rsa_private_key(void) {
FILE *fp;
char *fname, *key, *pubkey;
struct stat s;
@ -241,8 +239,7 @@ void regenerate_key() {
/*
Configure node_t myself and set up the local sockets (listen only)
*/
bool setup_myself(void)
{
bool setup_myself(void) {
config_t *cfg;
subnet_t *subnet;
char *name, *hostname, *mode, *afname, *cipher, *digest;
@ -576,8 +573,7 @@ bool setup_myself(void)
/*
setup all initial network connections
*/
bool setup_network_connections(void)
{
bool setup_network_connections(void) {
cp();
init_connections();
@ -612,8 +608,7 @@ bool setup_network_connections(void)
/*
close all open network connections
*/
void close_network_connections(void)
{
void close_network_connections(void) {
avl_node_t *node, *next;
connection_t *c;
char *envp[5];