K&R style braces.

This is essentially commit f02d3ed3e1 from the
1.1 branch, making it easier to merge between master and 1.1.
This commit is contained in:
Guus Sliepen 2009-09-25 00:14:03 +02:00
parent ab7c61b06f
commit 5dde6461a3
32 changed files with 271 additions and 538 deletions

View file

@ -36,8 +36,7 @@
bool mykeyused = false;
bool send_key_changed()
{
bool send_key_changed() {
cp();
/* Only send this message if some other daemon requested our key previously.
@ -50,8 +49,7 @@ bool send_key_changed()
return send_request(broadcast, "%d %x %s", KEY_CHANGED, rand(), myself->name);
}
bool key_changed_h(connection_t *c)
{
bool key_changed_h(connection_t *c) {
char name[MAX_STRING_SIZE];
node_t *n;
@ -85,15 +83,13 @@ bool key_changed_h(connection_t *c)
return true;
}
bool send_req_key(node_t *to)
{
bool send_req_key(node_t *to) {
cp();
return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
}
bool req_key_h(connection_t *c)
{
bool req_key_h(connection_t *c) {
char from_name[MAX_STRING_SIZE];
char to_name[MAX_STRING_SIZE];
node_t *from, *to;
@ -142,8 +138,7 @@ bool req_key_h(connection_t *c)
return true;
}
bool send_ans_key(node_t *to)
{
bool send_ans_key(node_t *to) {
char *key;
cp();
@ -180,8 +175,7 @@ bool send_ans_key(node_t *to)
to->incompression);
}
bool ans_key_h(connection_t *c)
{
bool ans_key_h(connection_t *c) {
char from_name[MAX_STRING_SIZE];
char to_name[MAX_STRING_SIZE];
char key[MAX_STRING_SIZE];