From 773a2796d4940099033c34d72c81c2c44e241d5d Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Sat, 26 Feb 2000 12:39:52 +0000 Subject: [PATCH] Don't use an uninitialized string for error reporting. --- mx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mx.c b/mx.c index 9e412f10..fdefa123 100644 --- a/mx.c +++ b/mx.c @@ -467,7 +467,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx) if (mkdir (ctx->path, S_IRWXU)) { - mutt_perror (tmp); + mutt_perror (ctx->path); return (-1); } -- 2.40.0