From 3e4ccba16a236b0e7b0599deb51412be4ca6f8da Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Tue, 12 Sep 2023 15:49:12 +0300 Subject: [PATCH] fixup! Creation of symbol store generation. --- symstore/symstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symstore/symstore.c b/symstore/symstore.c index 91347ae8..98dae86e 100644 --- a/symstore/symstore.c +++ b/symstore/symstore.c @@ -158,7 +158,7 @@ static BOOL validate_proton_dist(const char* src) snprintf(buffer, ARRAYSIZE(buffer), "%s/%s", src, "version"); allgood = stat(buffer, &st) == 0 && (st.st_mode & S_IFMT) == S_IFREG; - snprintf(buffer, ARRAYSIZE(buffer), "%s/%s", src, "files"); + snprintf(buffer, ARRAYSIZE(buffer), "%s/%s", src, "dist"); allgood = allgood && stat(buffer, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR; return allgood;