]> granicus.if.org Git - neomutt/commitdiff
Don't use an uninitialized string for error reporting.
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 26 Feb 2000 12:39:52 +0000 (12:39 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 26 Feb 2000 12:39:52 +0000 (12:39 +0000)
mx.c

diff --git a/mx.c b/mx.c
index 9e412f109aeac8b4ed29732bc5a4994bd1cc9b31..fdefa123f368fd563fb2cfc022da40e5833cc57e 100644 (file)
--- 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);
       }