From: Alessandro Ghedini Date: Sat, 12 Aug 2017 12:33:10 +0000 (+0100) Subject: docs: fix typo stuct -> struct X-Git-Tag: curl-7_55_1~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=274f9cac96eeafce77d61065e7a3fba9680469c6;p=thirdparty%2Fcurl.git docs: fix typo stuct -> struct --- diff --git a/docs/libcurl/opts/CURLOPT_SEEKDATA.3 b/docs/libcurl/opts/CURLOPT_SEEKDATA.3 index 9fea9b1b70..6ffa7d12a9 100644 --- a/docs/libcurl/opts/CURLOPT_SEEKDATA.3 +++ b/docs/libcurl/opts/CURLOPT_SEEKDATA.3 @@ -39,7 +39,7 @@ HTTP, FTP, SFTP .nf static int seek_cb(void *userp, curl_off_t offset, int origin) { - struct data *d = (stuct data *)userp; + struct data *d = (struct data *)userp; lseek(our_fd, offset, origin); return CURL_SEEKFUNC_OK; } diff --git a/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 b/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 index 57141ecf3a..95780c8720 100644 --- a/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 +++ b/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 @@ -70,7 +70,7 @@ HTTP, FTP, SFTP .nf static int seek_cb(void *userp, curl_off_t offset, int origin) { - struct data *d = (stuct data *)userp; + struct data *d = (struct data *)userp; lseek(our_fd, offset, origin); return CURL_SEEKFUNC_OK; }