From: Viktor Szakats Date: Sun, 8 Feb 2026 00:04:20 +0000 (+0100) Subject: curl_get_line: drop single-use macro X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb56f325a4ebd4c3cb821fb8abde055343443827;p=thirdparty%2Fcurl.git curl_get_line: drop single-use macro Follow-up to 769ccb4d4261a75c8a4236fbe7dc3e27956db1c9 #19140 Closes #20542 --- diff --git a/lib/curl_get_line.c b/lib/curl_get_line.c index 0eae0029f9..85b3525be7 100644 --- a/lib/curl_get_line.c +++ b/lib/curl_get_line.c @@ -28,8 +28,6 @@ #include "curl_get_line.h" -#define appendnl(b) curlx_dyn_addn(buf, "\n", 1) - /* * Curl_get_line() returns only complete whole lines that end with newline. * When 'eof' is set TRUE, the last line has been read. @@ -60,7 +58,7 @@ CURLcode Curl_get_line(struct dynbuf *buf, FILE *input, bool *eof) return CURLE_OK; /* all good */ if(*eof) /* append a newline */ - return appendnl(buf); + return curlx_dyn_addn(buf, "\n", 1); /* otherwise get next line to append */ } /* UNREACHABLE */