If config keyfile does not exist, create it.
All checks were successful
CI / Check spelling (pull_request) Successful in 22s
CI / Check coding style (pull_request) Successful in 36s
CI / Linux (ubuntu) (pull_request) Successful in 14m11s
CI / Linux (debian) (pull_request) Successful in 16m2s
CI / Linux (arch) (pull_request) Successful in 20m21s
CI / Check spelling (push) Successful in 19s
CI / Check coding style (push) Successful in 34s
CI / Linux (debian) (push) Successful in 13m41s
CI / Linux (ubuntu) (push) Successful in 15m3s
CI / Linux (arch) (push) Successful in 20m23s
All checks were successful
CI / Check spelling (pull_request) Successful in 22s
CI / Check coding style (pull_request) Successful in 36s
CI / Linux (ubuntu) (pull_request) Successful in 14m11s
CI / Linux (debian) (pull_request) Successful in 16m2s
CI / Linux (arch) (pull_request) Successful in 20m21s
CI / Check spelling (push) Successful in 19s
CI / Check coding style (push) Successful in 34s
CI / Linux (debian) (push) Successful in 13m41s
CI / Linux (ubuntu) (push) Successful in 15m3s
CI / Linux (arch) (push) Successful in 20m23s
Fixes #1911
Alternative to #2056
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
(cherry picked from commit b12521ca21)
This commit is contained in:
@@ -45,6 +45,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include <curl/easy.h>
|
#include <curl/easy.h>
|
||||||
@@ -199,6 +200,10 @@ load_custom_keyfile(prof_keyfile_t* keyfile, gchar* filename)
|
|||||||
|
|
||||||
if (g_file_test(keyfile->filename, G_FILE_TEST_EXISTS)) {
|
if (g_file_test(keyfile->filename, G_FILE_TEST_EXISTS)) {
|
||||||
g_chmod(keyfile->filename, S_IRUSR | S_IWUSR);
|
g_chmod(keyfile->filename, S_IRUSR | S_IWUSR);
|
||||||
|
} else {
|
||||||
|
int fno = g_creat(keyfile->filename, S_IRUSR | S_IWUSR);
|
||||||
|
if (fno != -1)
|
||||||
|
g_close(fno, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
return _load_keyfile(keyfile);
|
return _load_keyfile(keyfile);
|
||||||
|
|||||||
Reference in New Issue
Block a user