diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-03-13 16:01:52 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-03-16 13:26:14 +0000 |
commit | c301e84afb0714d84662db1e7b2bf5eeb45da324 (patch) | |
tree | a4e4fad32775dd3c3f1cef7e37b158f39483e5a2 | |
parent | a9a2ef63968bfb6e6237e6b435efd65ccb7cbe65 (diff) |
tidying
-rw-r--r-- | src/src/expand.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/src/expand.c b/src/src/expand.c index 85619acfe..95bf4ad07 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -3919,7 +3919,7 @@ Returns: new pointer for expandable string, terminated if non-null */ gstring * -cat_file(FILE *f, gstring *yield, uschar *eol) +cat_file(FILE * f, gstring * yield, uschar * eol) { uschar buffer[1024]; @@ -3931,8 +3931,6 @@ while (Ufgets(buffer, sizeof(buffer), f)) if (eol && buffer[len]) yield = string_cat(yield, eol); } - -(void) string_from_gstring(yield); return yield; } @@ -3954,7 +3952,6 @@ while ((rc = tls_read(tls_ctx, buffer, sizeof(buffer))) > 0) /* We assume that all errors, and any returns of zero bytes, are actually EOF. */ -(void) string_from_gstring(yield); return yield; } #endif |