mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08:00
fix temp string buffer variable name
This commit is contained in:
parent
e1e55e4d04
commit
d7d5baa0e2
@ -356,9 +356,9 @@ static int rlimit(int keep_open)
|
||||
* with an indication that select limit would be exceeded.
|
||||
*/
|
||||
|
||||
sprintf(strbuff2, fmt, num_open.rlim_max);
|
||||
sprintf(strbuff1, fmt, num_open.rlim_max);
|
||||
sprintf(strbuff, "fds open %s > select limit %d",
|
||||
strbuff2, FD_SETSIZE);
|
||||
strbuff1, FD_SETSIZE);
|
||||
store_errmsg(strbuff, 0);
|
||||
fprintf(stderr, "%s\n", msgbuff);
|
||||
close_file_descriptors();
|
||||
|
Loading…
x
Reference in New Issue
Block a user