From 8ddb934caf424b93ed870265f0a9e690691bef4a Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Sat, 3 Dec 2016 15:22:15 +1000 Subject: [PATCH] Updated to ensure uppercase MSGTMP is outputted. --- utils/magiedit/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/magiedit/main.c b/utils/magiedit/main.c index 44b9ef4..e66e2e9 100644 --- a/utils/magiedit/main.c +++ b/utils/magiedit/main.c @@ -606,6 +606,7 @@ int main(int argc, char **argv) sprintf(msgtmp, "%s%cmsgtmp", msgpath, path_sep); fptr = fopen(msgtmp, "r"); if (!fptr) { + sprintf(msgtmp, "%s%cMSGTMP", msgpath, path_sep); noquote = 1; } }