mirror of
https://github.com/curl/curl.git
synced 2026-07-24 16:47:16 +03:00
Checked in some grammatical and minor other fixes in the documentation and
examples that I found in the FreeBSD ports system.
This commit is contained in:
parent
c98ab69cc7
commit
152cf6325d
7 changed files with 130 additions and 122 deletions
|
|
@ -27,7 +27,11 @@ int main(void)
|
|||
return 1; /* can't continue */
|
||||
}
|
||||
|
||||
stat("debugit", &file_info); /* to get the file size */
|
||||
/* to get the file size */
|
||||
if(fstat(fileno(fd), &file_info) != 0) {
|
||||
|
||||
return 1; /* can't continue */
|
||||
}
|
||||
|
||||
curl = curl_easy_init();
|
||||
if(curl) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue