forked from soccera/rdo
Fix string format, push version 1.4.2
This commit is contained in:
parent
fd4ee6a712
commit
46872e4ebd
1 changed files with 2 additions and 2 deletions
4
rdo.c
4
rdo.c
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue