From 16e8469316ad90ff4d405fa54ba10a977d611ff0 Mon Sep 17 00:00:00 2001 From: Alexandre Chichmanian Date: Wed, 17 May 2023 00:12:07 -0400 Subject: [PATCH] Fix aws startup check preventing keydb from starting --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index e176d3133..71c6ad34d 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -2468,7 +2468,7 @@ static int isValidS3Bucket(char *s3bucket, const char **err) { if (pid == 0) { - execlp("aws", "aws", "s3", "ls", s3bucket); + execlp("aws", "aws", "s3", "ls", s3bucket, nullptr); exit(EXIT_FAILURE); } else