diff options
Diffstat (limited to '')
-rw-r--r-- | atom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/atom.c b/atom.c index 0572cab..1ed940a 100644 --- a/atom.c +++ b/atom.c @@ -51,7 +51,7 @@ static int atomAuthor(FILE *file, struct Address addr) { static char *atomEntryURL(const struct Envelope *envelope) { struct Variable vars[] = { - { "name", pathMangle(envelope->messageID) }, + { "name", pathSafe(envelope->messageID) }, {0}, }; return templateURL("/message/[name].mbox", vars); @@ -99,7 +99,7 @@ int atomEntryClose(FILE *file) { static char *atomFeedURL(const struct Envelope *envelope, const char *type) { struct Variable vars[] = { - { "name", pathMangle(envelope->messageID) }, + { "name", pathSafe(envelope->messageID) }, { "type", type }, {0}, }; |