X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8a5a1a5303ddc67f06350a57a515853724a16e31..b42bad5fdb20cefbafdcc2b3c90e191b4a231787:/uip/burst.c diff --git a/uip/burst.c b/uip/burst.c index f188bf1f..5623e2c1 100644 --- a/uip/burst.c +++ b/uip/burst.c @@ -8,8 +8,8 @@ #include #include #include -#include "../sbr/m_maildir.h" -#include "../sbr/m_mktemp.h" +#include "sbr/m_maildir.h" +#include "sbr/m_mktemp.h" #include "mhfree.h" #define BURST_SWITCHES \ @@ -252,7 +252,7 @@ find_delim (int msgnum, struct smsg *smsgs, int *mimesw) adios (msgnam, "does not have any message/rfc822 parts"); if (msgp > 1) { *mimesw = 1; - return (msgp - 1); + return msgp - 1; } } } @@ -315,7 +315,7 @@ find_delim (int msgnum, struct smsg *smsgs, int *mimesw) } fclose (in); - return (msgp - 1); /* return the number of messages burst */ + return msgp - 1; /* return the number of messages burst */ }