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

@ -51,8 +51,7 @@ char *device_info;
static int device_total_in = 0;
static int device_total_out = 0;
bool setup_device(void)
{
bool setup_device(void) {
struct ifreq ifr;
cp();
@ -112,15 +111,13 @@ bool setup_device(void)
return true;
}
void close_device(void)
{
void close_device(void) {
cp();
close(device_fd);
}
bool read_packet(vpn_packet_t *packet)
{
bool read_packet(vpn_packet_t *packet) {
int lenin;
cp();
@ -169,8 +166,7 @@ bool read_packet(vpn_packet_t *packet)
return true;
}
bool write_packet(vpn_packet_t *packet)
{
bool write_packet(vpn_packet_t *packet) {
cp();
ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
@ -208,8 +204,7 @@ bool write_packet(vpn_packet_t *packet)
return true;
}
void dump_device_stats(void)
{
void dump_device_stats(void) {
cp();
logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);