write_http.c - Indentation fix
authorloginator17 <loginator17@users.noreply.github.com>
Wed, 1 Oct 2014 08:50:31 +0000 (09:50 +0100)
committerloginator17 <loginator17@users.noreply.github.com>
Wed, 1 Oct 2014 08:50:31 +0000 (09:50 +0100)
Indentation fix

src/write_http.c

index cd0f949..08cf389 100644 (file)
@@ -59,8 +59,8 @@ struct wh_callback_s
         char *clientkeypass;
         long sslversion;
         _Bool store_rates;
         char *clientkeypass;
         long sslversion;
         _Bool store_rates;
-               _Bool abort_on_slow;
-               int   low_limit_bytes;
+       _Bool abort_on_slow;
+       int   low_limit_bytes;
         time_t interval;
 
 #define WH_FORMAT_COMMAND 0
         time_t interval;
 
 #define WH_FORMAT_COMMAND 0
@@ -357,12 +357,13 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{
                 return (-1);
         }
 
                 return (-1);
         }
 
-               cb->interval = CDTIME_T_TO_TIME_T(vl->interval);
+       cb->interval = CDTIME_T_TO_TIME_T(vl->interval);
                
         pthread_mutex_lock (&cb->send_lock);
 
         if (cb->curl == NULL)
         {
                
         pthread_mutex_lock (&cb->send_lock);
 
         if (cb->curl == NULL)
         {
+               cb->interval = CDTIME_T_TO_TIME_T(vl->interval);
                 status = wh_callback_init (cb);
                 if (status != 0)
                 {
                 status = wh_callback_init (cb);
                 if (status != 0)
                 {
@@ -407,12 +408,12 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ *
 {
         int status;
                
 {
         int status;
                
-               cb->interval = CDTIME_T_TO_TIME_T(vl->interval);
-
         pthread_mutex_lock (&cb->send_lock);
 
         if (cb->curl == NULL)
         {
         pthread_mutex_lock (&cb->send_lock);
 
         if (cb->curl == NULL)
         {
+                       cb->interval = CDTIME_T_TO_TIME_T(vl->interval);
+
                 status = wh_callback_init (cb);
                 if (status != 0)
                 {
                 status = wh_callback_init (cb);
                 if (status != 0)
                 {
@@ -523,7 +524,7 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */
         cb->verify_host = 1;
         cb->format = WH_FORMAT_COMMAND;
         cb->sslversion = CURL_SSLVERSION_DEFAULT;
         cb->verify_host = 1;
         cb->format = WH_FORMAT_COMMAND;
         cb->sslversion = CURL_SSLVERSION_DEFAULT;
-               cb->low_limit_bytes = WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC;
+       cb->low_limit_bytes = WH_DEFAULT_LOW_LIMIT_BYTES_PER_SEC;
 
         pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
 
 
         pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
 
@@ -587,7 +588,7 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */
                         cf_util_get_boolean (child, &cb->store_rates);
                 else if (strcasecmp ("BufferSize", child->key) == 0)
                         cf_util_get_int (child, &buffer_size);
                         cf_util_get_boolean (child, &cb->store_rates);
                 else if (strcasecmp ("BufferSize", child->key) == 0)
                         cf_util_get_int (child, &buffer_size);
-                   else if (strcasecmp ("LowSpeedLimit", child->key) == 0)
+               else if (strcasecmp ("LowSpeedLimit", child->key) == 0)
                         cf_util_get_boolean (child,&cb->abort_on_slow);
                 else if (strcasecmp ("LowLimitBytesPerSec", child->key) == 0)
                         cf_util_get_int (child, &cb->low_limit_bytes);
                         cf_util_get_boolean (child,&cb->abort_on_slow);
                 else if (strcasecmp ("LowLimitBytesPerSec", child->key) == 0)
                         cf_util_get_int (child, &cb->low_limit_bytes);