mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
curl_get_line: drop single-use macro
Follow-up to 769ccb4d42 #19140
Closes #20542
This commit is contained in:
parent
aa0be708b9
commit
bb56f325a4
@ -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 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user