summaryrefslogtreecommitdiffstats
path: root/imap/browse.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-09-04 10:49:46 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-09-04 10:49:46 +0000
commit643690a1274d0598ee973b272c934bb147e6cda4 (patch)
tree441d9f1613dd75bd8dc460fc2b247bd1a4246190 /imap/browse.c
parent3b9b910c6db2443ea544613578e1a604b38b6071 (diff)
patch-bac.imapurl-4
Diffstat (limited to 'imap/browse.c')
-rw-r--r--imap/browse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/imap/browse.c b/imap/browse.c
index cfd77c79..cf7c4bc5 100644
--- a/imap/browse.c
+++ b/imap/browse.c
@@ -133,7 +133,7 @@ int imap_browse (char* path, struct browser_state* state)
/* don't show parents in the home namespace */
if (!home_namespace)
showparents = 1;
- imap_qualify_path (buf, sizeof (buf), &mx, mbox, NULL);
+ imap_qualify_path (buf, sizeof (buf), &mx, mbox);
state->folder = safe_strdup (buf);
n--;
}
@@ -165,7 +165,7 @@ int imap_browse (char* path, struct browser_state* state)
mbox[n++] = ctmp;
ctmp = mbox[n];
mbox[n] = '\0';
- imap_qualify_path (buf, sizeof (buf), &mx, mbox, NULL);
+ imap_qualify_path (buf, sizeof (buf), &mx, mbox);
state->folder = safe_strdup (buf);
}
mbox[n] = ctmp;
@@ -180,7 +180,7 @@ int imap_browse (char* path, struct browser_state* state)
imap_add_folder (idata->delim, relpath, 1, 0, state, 1);
if (!state->folder)
{
- imap_qualify_path (buf, sizeof (buf), &mx, relpath, NULL);
+ imap_qualify_path (buf, sizeof (buf), &mx, relpath);
state->folder = safe_strdup (buf);
}
}
@@ -189,7 +189,7 @@ int imap_browse (char* path, struct browser_state* state)
/* no namespace, no folder: set folder to host only */
if (!state->folder)
{
- imap_qualify_path (buf, sizeof (buf), &mx, NULL, NULL);
+ imap_qualify_path (buf, sizeof (buf), &mx, NULL);
state->folder = safe_strdup (buf);
}
@@ -362,7 +362,7 @@ static void imap_add_folder (char delim, char *folder, int noselect,
return;
}
- imap_qualify_path (tmp, sizeof (tmp), &mx, folder, NULL);
+ imap_qualify_path (tmp, sizeof (tmp), &mx, folder);
(state->entry)[state->entrylen].name = safe_strdup (tmp);
/* mark desc with delim in browser if it can have subfolders */