summaryrefslogtreecommitdiff
path: root/pop3d
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-12-17 01:25:53 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2011-12-17 01:32:40 +0200
commit7f325d5c04a280e0711a09fef9eab86e128ace86 (patch)
tree75912d5803e788de9d4b22fa719c6b68c8ebf6f7 /pop3d
parent5c16cf454ffc05a340cbf8136c36e4cc1ed72904 (diff)
downloadmailutils-7f325d5c04a280e0711a09fef9eab86e128ace86.tar.gz
mailutils-7f325d5c04a280e0711a09fef9eab86e128ace86.tar.bz2
Fix the use of the hierarchy delimiter.
* include/mailutils/util.h (MU_HIERARCHY_DELIMITER): New define. (mu_tilde_expansion): Change signature. Delimiter is an int. * libmailutils/base/tilde.c: Likewise. All uses update. * imap4d/namespace.c (namespace_checkfullpath) (namespace_getfullpath): Remove delim argument. All uses updated. * imap4d/util.c (util_getfullpath): Remove delim argument. All uses updated.
Diffstat (limited to 'pop3d')
-rw-r--r--pop3d/bulletin.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/pop3d/bulletin.c b/pop3d/bulletin.c
index 9f4105def..c42229c37 100644
--- a/pop3d/bulletin.c
+++ b/pop3d/bulletin.c
@@ -75,7 +75,8 @@ read_popbull_file (size_t *pnum)
{
int rc = 1;
FILE *fp;
- char *filename = mu_tilde_expansion ("~/.popbull", "/", auth_data->dir);
+ char *filename = mu_tilde_expansion ("~/.popbull", MU_HIERARCHY_DELIMITER,
+ auth_data->dir);
if (!filename)
return 1;
@@ -99,7 +100,8 @@ write_popbull_file (size_t num)
{
int rc = 1;
FILE *fp;
- char *filename = mu_tilde_expansion ("~/.popbull", "/", auth_data->dir);
+ char *filename = mu_tilde_expansion ("~/.popbull", MU_HIERARCHY_DELIMITER,
+ auth_data->dir);
if (!filename)
return 1;

Return to:

Send suggestions and report system problems to the System administrator.