=== modified file 'plugins.d/askpass-fifo.c' --- plugins.d/askpass-fifo.c 2011-12-31 23:05:34 +0000 +++ plugins.d/askpass-fifo.c 2014-03-10 07:04:09 +0000 @@ -55,7 +55,7 @@ va_start(ap, formatstring); ret = vasprintf(&text, formatstring, ap); - if (ret == -1){ + if(ret == -1){ fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name); vfprintf(stderr, formatstring, ap); === modified file 'plugins.d/password-prompt.c' --- plugins.d/password-prompt.c 2014-03-06 02:26:04 +0000 +++ plugins.d/password-prompt.c 2014-03-10 07:04:09 +0000 @@ -82,7 +82,7 @@ va_start(ap, formatstring); ret = vasprintf(&text, formatstring, ap); - if (ret == -1){ + if(ret == -1){ fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name); vfprintf(stderr, formatstring, ap); @@ -212,7 +212,7 @@ struct dirent **direntries = NULL; int ret; ret = scandir("/proc", &direntries, is_plymouth, alphasort); - if (ret == -1){ + if(ret == -1){ error_plus(1, errno, "scandir"); } free(direntries); @@ -303,7 +303,7 @@ fprintf(stderr, "Starting %s\n", argv[0]); } - if (conflict_detection()){ + if(conflict_detection()){ if(debug){ fprintf(stderr, "Stopping %s because of conflict\n", argv[0]); } === modified file 'plugins.d/plymouth.c' --- plugins.d/plymouth.c 2013-10-20 15:25:09 +0000 +++ plugins.d/plymouth.c 2014-03-10 07:04:09 +0000 @@ -84,7 +84,7 @@ va_start(ap, formatstring); ret = vasprintf(&text, formatstring, ap); - if (ret == -1){ + if(ret == -1){ fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name); vfprintf(stderr, formatstring, ap); @@ -179,7 +179,7 @@ int i = 0; for (; argv[i]!=NULL; i++){ tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1)); - if (tmp == NULL){ + if(tmp == NULL){ error_plus(0, errno, "realloc"); free(new_argv); _exit(EX_OSERR); @@ -290,12 +290,12 @@ if(proc_id == 0){ struct dirent **direntries = NULL; ret = scandir("/proc", &direntries, is_plymouth, alphasort); - if (ret == -1){ + if(ret == -1){ error_plus(0, errno, "scandir"); } - if (ret > 0){ + if(ret > 0){ ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id); - if (ret < 0){ + if(ret < 0){ error_plus(0, errno, "sscanf"); } } === modified file 'plugins.d/splashy.c' --- plugins.d/splashy.c 2011-12-31 23:05:34 +0000 +++ plugins.d/splashy.c 2014-03-10 07:04:09 +0000 @@ -70,7 +70,7 @@ va_start(ap, formatstring); ret = vasprintf(&text, formatstring, ap); - if (ret == -1){ + if(ret == -1){ fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name); vfprintf(stderr, formatstring, ap); === modified file 'plugins.d/usplash.c' --- plugins.d/usplash.c 2011-12-31 23:05:34 +0000 +++ plugins.d/usplash.c 2014-03-10 07:04:09 +0000 @@ -67,7 +67,7 @@ va_start(ap, formatstring); ret = vasprintf(&text, formatstring, ap); - if (ret == -1){ + if(ret == -1){ fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name); vfprintf(stderr, formatstring, ap);