K&R style braces.
[tinc] / src / solaris / device.c
index 28c8ff7..71d9bda 100644 (file)
@@ -41,8 +41,7 @@ static char *device_info = NULL;
 static int device_total_in = 0;
 static int device_total_out = 0;
 
 static int device_total_in = 0;
 static int device_total_out = 0;
 
-bool setup_device(void)
-{
+bool setup_device(void) {
        int ip_fd = -1, if_fd = -1;
        int ppa;
        char *ptr;
        int ip_fd = -1, if_fd = -1;
        int ppa;
        char *ptr;
@@ -107,8 +106,7 @@ bool setup_device(void)
        return true;
 }
 
        return true;
 }
 
-void close_device(void)
-{
+void close_device(void) {
        cp();
 
        close(device_fd);
        cp();
 
        close(device_fd);
@@ -117,8 +115,7 @@ void close_device(void)
        free(iface);
 }
 
        free(iface);
 }
 
-bool read_packet(vpn_packet_t *packet)
-{
+bool read_packet(vpn_packet_t *packet) {
        int lenin;
 
        cp();
        int lenin;
 
        cp();
@@ -155,8 +152,7 @@ bool read_packet(vpn_packet_t *packet)
        return true;
 }
 
        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"),
        cp();
 
        ifdebug(TRAFFIC) logger(LOG_DEBUG, _("Writing packet of %d bytes to %s"),
@@ -173,8 +169,7 @@ bool write_packet(vpn_packet_t *packet)
        return true;
 }
 
        return true;
 }
 
-void dump_device_stats(void)
-{
+void dump_device_stats(void) {
        cp();
 
        logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);
        cp();
 
        logger(LOG_DEBUG, _("Statistics for %s %s:"), device_info, device);