From: Joel Reicher Date: Sun, 4 Jun 2006 08:37:24 +0000 (+0000) Subject: Fixed bug introduced when changing from check_folder() to new X-Git-Tag: nmh-1_3_RC1~30 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;ds=sidebyside;h=63298d0f1870b5df16ac8664494e5a24b224dfc5;p=mmh Fixed bug introduced when changing from check_folder() to new create_folder() function. The folder name needed to be expanded to an absolute path first. Similar things may have happened with other conversions. --- diff --git a/uip/mhstoresbr.c b/uip/mhstoresbr.c index 23b4ef2..1c05a42 100644 --- a/uip/mhstoresbr.c +++ b/uip/mhstoresbr.c @@ -570,7 +570,7 @@ store_content (CT ct, CT p) folder = getfolder (1); /* Check if folder exists */ - create_folder(folder, 0, exit); + create_folder(m_mailpath(folder), 0, exit); /* Record the folder name */ ct->c_folder = add (folder, NULL);