Skip to content

Commit 8a80711

Browse files
committed
Follow up to pull request trusteddomainproject#239: Style fix, no functional change.
1 parent 43b6bdf commit 8a80711

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

opendkim/opendkim.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12364,10 +12364,14 @@ mlfi_eoh(SMFICTX *ctx)
1236412364

1236512365
if (domainok)
1236612366
{
12367-
// We must not use strlcpy() here since
12368-
// src and dst overlap.
12369-
char* p2 = dfc->mctx_domain;
12370-
while( (*p2++ = *p++) );
12367+
/*
12368+
** We must not use strlcpy() here since
12369+
** src and dst overlap.
12370+
*/
12371+
char* p2 = (char *) dfc->mctx_domain;
12372+
while ((*p2++ = *p++))
12373+
{
12374+
}
1237112375
break;
1237212376
}
1237312377
}

0 commit comments

Comments
 (0)