diff options
| author | Prakxo <87568477+Prakxo@users.noreply.github.com> | 2024-01-31 19:39:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-31 11:39:03 -0700 |
| commit | 24074d678d5d87a987bbda221f7da1a0dd02ea35 (patch) | |
| tree | 1f324c3b99ca48d50cab26154fd3d7b8cc981287 /src/code/m_mail.c | |
| parent | eee794d4b6a88c6000b4e4bd07cf806ff2eb8d3f (diff) | |
m_private OK (#139)
* update m2ctx
* size fixes?
* size fix
* work
* more work
* m_private OK
* fix style
* format
* fix warnings
* format..
Diffstat (limited to 'src/code/m_mail.c')
| -rw-r--r-- | src/code/m_mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/m_mail.c b/src/code/m_mail.c index d967753..540fd6c 100644 --- a/src/code/m_mail.c +++ b/src/code/m_mail.c @@ -94,8 +94,8 @@ void mMl_set_to_name(Mail_c* arg0, Mail_c* arg1) { mMl_copy_header_name(&arg0->header.recipient, &arg1->header.recipient); } -void mMl_set_to_plname(Mail_c* arg0, Mail_c* arg1) { - mPr_CopyPersonalID(&arg0->header.recipient.personalID, &arg1->header.recipient.personalID); +void mMl_set_to_plname(Mail_c* arg0, PersonalID_c* arg1) { + mPr_CopyPersonalID(&arg0->header.recipient.personalID, arg1); arg0->header.recipient.type = 0; } |
