1
0
Fork 0
forked from soccera/rdo

Fix string format, push version 1.4.2

This commit is contained in:
sw1tchbl4d3 2022-07-28 17:21:52 +02:00
parent fd4ee6a712
commit 46872e4ebd

4
rdo.c
View file

@ -11,7 +11,7 @@
#include "readpassphrase.h"
#include "sessions.h"
#define VERSION "1.4.1"
#define VERSION "1.4.2"
void getconf(FILE* fp, const char* entry, char* result, size_t len_result) {
char* line = NULL;
@ -46,7 +46,7 @@ void runprog(char** program_argv) {
// NOTE: this does not return when no error occurred.
execvp(program_argv[0], program_argv);
err(1, program_argv[0]);
err(1, "%s", program_argv[0]);
}
int main(int argc, char** argv) {