mirror of
https://github.com/curl/curl.git
synced 2026-05-04 19:49:59 +03:00
fix temp string buffer variable name
This commit is contained in:
parent
e1e55e4d04
commit
d7d5baa0e2
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue