Fixed an omitted 'break' statement in RFC822 output that was causing multiple To...
authorArt Cancro <ajc@citadel.org>
Sun, 21 Feb 2021 20:31:27 +0000 (15:31 -0500)
committerArt Cancro <ajc@citadel.org>
Sun, 21 Feb 2021 20:31:27 +0000 (15:31 -0500)
citadel/msgbase.c

index 38b598b40be10807494bde059b7970ce9616b4e5..39bc7703abe16c6323e561a21b0373b5c2f46365 100644 (file)
@@ -1795,6 +1795,7 @@ void OutputRFC822MsgHeaders(
                                break;
                        case erFc822Addr:
                                safestrncpy(fuser, mptr, sizeof_fuser);
+                               break;
                        case eRecipient:
                                if (haschar(mptr, '@') == 0) {
                                        sanitize_truncated_recipient(mptr);