diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 22:05:52 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 22:05:52 +0200 |
commit | e6e9663d40f7aab9e1982dddcaa11386551ad182 (patch) | |
tree | 39c2a34aa78d4723e8308d270e872f61da3818ca /src/spf.c | |
parent | 20b85c03e751b4876fa3c92040464e483172b746 (diff) |
fix issues preventing compilationjannis
Diffstat (limited to 'src/spf.c')
-rw-r--r-- | src/spf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ int spf_query( if (!stralloc_copys(&domain, spfmf.s + at + 1)) return SPF_NOMEM; } else { // if (!stralloc_0(&spfhelo)) return SPF_NOMEM; - if (!stralloc_copys(&domain, &spfhelo)) return SPF_NOMEM; + if (!stralloc_copy(&domain, &spfhelo)) return SPF_NOMEM; } if (!stralloc_copy(&identity, &domain)) return SPF_NOMEM; } |