(make_path): fix reversed args
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4944 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -44,7 +44,7 @@ static void
|
|||||||
make_path(POP *p, MsgInfoList *mp, int new, char *buf, size_t len)
|
make_path(POP *p, MsgInfoList *mp, int new, char *buf, size_t len)
|
||||||
{
|
{
|
||||||
snprintf(buf, len, "%s/%s%s%s", p->drop_name,
|
snprintf(buf, len, "%s/%s%s%s", p->drop_name,
|
||||||
new ? "new" : "cur", mp ? "/" : "", mp ? "" : mp->name);
|
new ? "new" : "cur", mp ? "/" : "", mp ? mp->name : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
Reference in New Issue
Block a user