Skip to content

Commit e12fe64

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

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

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)