=== modified file 'plugin-runner.c' --- plugin-runner.c 2016-07-03 03:32:28 +0000 +++ plugin-runner.c 2016-12-12 18:25:02 +0000 @@ -792,7 +792,7 @@ } if(debug){ - for(plugin *p = plugin_list; p != NULL; p=p->next){ + for(plugin *p = plugin_list; p != NULL; p = p->next){ fprintf(stderr, "Plugin: %s has %d arguments\n", p->name ? p->name : "Global", p->argc - 1); for(char **a = p->argv; *a != NULL; a++){ === modified file 'plugins.d/mandos-client.c' --- plugins.d/mandos-client.c 2016-10-05 19:56:40 +0000 +++ plugins.d/mandos-client.c 2016-12-12 18:25:02 +0000 @@ -1079,8 +1079,9 @@ bool match = false; { char *interface = NULL; - while((interface=argz_next(mc->interfaces, mc->interfaces_size, - interface))){ + while((interface = argz_next(mc->interfaces, + mc->interfaces_size, + interface))){ if(if_nametoindex(interface) == (unsigned int)if_index){ match = true; break; @@ -2196,7 +2197,7 @@ /* Sleep checking until interface is running. Check every 0.25s, up to total time of delay */ - for(int i=0; i < delay * 4; i++){ + for(int i = 0; i < delay * 4; i++){ if(interface_is_running(interface)){ break; } @@ -3023,9 +3024,9 @@ /* Take down the network interfaces which were brought up */ { char *interface = NULL; - while((interface=argz_next(interfaces_to_take_down, - interfaces_to_take_down_size, - interface))){ + while((interface = argz_next(interfaces_to_take_down, + interfaces_to_take_down_size, + interface))){ ret = take_down_interface(interface); if(ret != 0){ errno = ret; === modified file 'plugins.d/plymouth.c' --- plugins.d/plymouth.c 2016-03-17 20:40:55 +0000 +++ plugins.d/plymouth.c 2016-12-12 18:25:02 +0000 @@ -181,7 +181,7 @@ } char **tmp; int i = 0; - for (; argv[i]!=NULL; i++){ + for (; argv[i] != NULL; i++){ tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 2)); if(tmp == NULL){ error_plus(0, errno, "realloc");