1
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/gmni synced 2024-04-24 17:25:00 +02:00

gmnlm: create cert dir on 6x response

So that the OpenSSL command doesn't fail when the cert dir hasn't
already been created.
This commit is contained in:
Eyal Sawady 2021-03-09 05:21:59 -05:00 committed by Drew DeVault
parent 42d80229d4
commit 93f30522f0
3 changed files with 9 additions and 1 deletions

View File

@ -9,6 +9,7 @@ struct pathspec {
};
char *getpath(const struct pathspec *paths, size_t npaths);
void posix_dirname(char *path, char *dname);
int mkdirs(char *path, mode_t mode);
int download_resp(FILE *out, struct gemini_response resp, const char *path,
char *url);

View File

@ -510,6 +510,13 @@ do_requests(struct browser *browser, struct gemini_response *resp)
n = snprintf(certpath, sizeof(certpath), path_fmt, host, "crt");
assert(n < sizeof(certpath));
n = snprintf(keypath, sizeof(keypath), path_fmt, host, "key");
char dname[PATH_MAX + 1];
posix_dirname(certpath, dname);
if (mkdirs(dname, 0755) != 0) {
fprintf(stderr, "Error creating directory %s: %s\n",
dname, strerror(errno));
break;
}
assert(n < sizeof(keypath));
fprintf(stderr, "The server requested a client certificate.\n"
"Presently, this process is not automated.\n"

View File

@ -11,7 +11,7 @@
#include <sys/stat.h>
#include "util.h"
static void
void
posix_dirname(char *path, char *dname)
{
char p[PATH_MAX+1];