]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
s/cURL/curl
authorDaniel Stenberg <daniel@haxx.se>
Tue, 18 Oct 2016 11:59:54 +0000 (13:59 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 18 Oct 2016 11:59:54 +0000 (13:59 +0200)
The tool was never called cURL, only the project. But even so, we have
more and more over time switched to just use lower case.

15 files changed:
CMakeLists.txt
configure.ac
docs/CODE_STYLE.md
docs/CONTRIBUTE.md
docs/FAQ
docs/INSTALL
docs/MAIL-ETIQUETTE
docs/TODO
docs/libcurl/opts/CURLINFO_COOKIELIST.3
docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3
lib/amigaos.c
lib/easy.c
lib/libcurl.rc
lib/strerror.c
src/curl.rc

index 6d19cb7aacc8cc22d9a9d48b97c42ba884c3fc1d..4187d37d020c89b2d4f2abfbc33d0d1e5f528d4e 100644 (file)
@@ -19,7 +19,7 @@
 # KIND, either express or implied.
 #
 ###########################################################################
-# cURL/libcurl CMake script
+# curl/libcurl CMake script
 # by Tetetest and Sukender (Benoit Neil)
 
 # TODO:
@@ -72,7 +72,7 @@ set(OS "\"${CMAKE_SYSTEM_NAME}\"")
 include_directories(${PROJECT_BINARY_DIR}/include/curl)
 include_directories( ${CURL_SOURCE_DIR}/include )
 
-option(BUILD_CURL_EXE "Set to ON to build cURL executable." ON)
+option(BUILD_CURL_EXE "Set to ON to build curl executable." ON)
 option(CURL_STATICLIB "Set to ON to build libcurl with static linking." OFF)
 option(ENABLE_ARES "Set to ON to enable c-ares support" OFF)
 if(WIN32)
@@ -454,7 +454,7 @@ check_library_exists_concat("idn" idna_to_ascii_lz HAVE_LIBIDN)
 # Check for symbol dlopen (same as HAVE_LIBDL)
 check_library_exists("${CURL_LIBS}" dlopen "" HAVE_DLOPEN)
 
-option(CURL_ZLIB "Set to ON to enable building cURL with zlib support." ON)
+option(CURL_ZLIB "Set to ON to enable building curl with zlib support." ON)
 set(HAVE_LIBZ OFF)
 set(HAVE_ZLIB_H OFF)
 set(HAVE_ZLIB OFF)
index 1f01467ef4b1cabf25f02e92174ef2233165cff5..0626b3810686d66105aa4aa7852594088bfb3624 100644 (file)
@@ -141,7 +141,7 @@ AC_SUBST(VERSIONNUM)
 
 dnl Solaris pkgadd support definitions
 PKGADD_PKG="HAXXcurl"
-PKGADD_NAME="cURL - a client that groks URLs"
+PKGADD_NAME="curl - a client that groks URLs"
 PKGADD_VENDOR="curl.haxx.se"
 AC_SUBST(PKGADD_PKG)
 AC_SUBST(PKGADD_NAME)
index e1da5c2c0a027ff81486395cb8f9dc1a4265278f..a12bf57cd884540f26dfae2360b6b509708ce632 100644 (file)
@@ -1,4 +1,4 @@
-# cURL C code style
+# curl C code style
 
 Source code that has a common style is easier to read than code that uses
 different styles in different places. It helps making the code feel like one
index eab4a2a0a23911af1edccec9bb6e0f7c5920e5f0..b0b0f6ccdbeded6fe5c3aba8b320c64dc849c990 100644 (file)
@@ -4,7 +4,7 @@ This document is intended to offer guidelines on how to best contribute to the
 curl project. This concerns new features as well as corrections to existing
 flaws or bugs.
 
-## Learning cURL
+## Learning curl
 
 ### Join the Community
 
index 8d37746fc57c70e5aa87e5a783b0df8b59a08c40..d663811a2587ec240dbbbcfb6c8c9320e28a775c 100644 (file)
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -81,7 +81,7 @@ FAQ
   4.16 My HTTP POST or PUT requests are slow!
   4.17 Non-functional connect timeouts on Windows
   4.18 file:// URLs containing drive letters (Windows, NetWare)
-  4.19 Why doesn't cURL return an error when the network cable is unplugged?
+  4.19 Why doesn't curl return an error when the network cable is unplugged?
   4.20 curl doesn't return error for HTTP non-200 responses!
   4.21 Why is there a HTTP/1.1 in my HTTP/2 request?
 
@@ -1083,18 +1083,18 @@ FAQ
 
   4.18 file:// URLs containing drive letters (Windows, NetWare)
 
-  When using cURL to try to download a local file, one might use a URL
+  When using curl to try to download a local file, one might use a URL
   in this format:
 
   file://D:/blah.txt
 
-  You'll find that even if D:\blah.txt does exist, cURL returns a 'file
+  You'll find that even if D:\blah.txt does exist, curl returns a 'file
   not found' error.
 
   According to RFC 1738 (https://www.ietf.org/rfc/rfc1738.txt),
   file:// URLs must contain a host component, but it is ignored by
   most implementations. In the above example, 'D:' is treated as the
-  host component, and is taken away. Thus, cURL tries to open '/blah.txt'.
+  host component, and is taken away. Thus, curl tries to open '/blah.txt'.
   If your system is installed to drive C:, that will resolve to 'C:\blah.txt',
   and if that doesn't exist you will get the not found error.
 
@@ -1107,9 +1107,9 @@ FAQ
 
   file://localhost/D:/blah.txt
 
-  In either case, cURL should now be looking for the correct file.
+  In either case, curl should now be looking for the correct file.
 
-  4.19 Why doesn't cURL return an error when the network cable is unplugged?
+  4.19 Why doesn't curl return an error when the network cable is unplugged?
 
   Unplugging a cable is not an error situation. The TCP/IP protocol stack
   was designed to be fault tolerant, so even though there may be a physical
index 2e1075ba4b5950a54c2a55fb22d431729228efc6..4f6593116d030802b64ad13341a7953440d9f3f2 100644 (file)
@@ -648,7 +648,7 @@ AmigaOS
 
    (This section was graciously brought to us by Diego Casorran)
 
-   To build cURL/libcurl on AmigaOS just type 'make amiga' ...
+   To build curl/libcurl on AmigaOS just type 'make amiga' ...
 
    What you need is:    (not tested with others versions)
 
@@ -900,7 +900,7 @@ CROSS COMPILE
    (This section was graciously brought to us by Jim Duey, with additions by
    Dan Fandrich)
 
-   Download and unpack the cURL package.
+   Download and unpack the curl package.
 
    'cd' to the new directory. (e.g. cd curl-7.12.3)
 
@@ -934,7 +934,7 @@ CROSS COMPILE
    You may also need to provide a parameter like '--with-random=/dev/urandom'
    to configure as it cannot detect the presence of a random number
    generating device for a target system.  The '--prefix' parameter
-   specifies where cURL will be installed.  If 'configure' completes
+   specifies where curl will be installed.  If 'configure' completes
    successfully, do 'make' and 'make install' as usual.
 
    In some cases, you may be able to simplify the above commands to as
index c118200c4c6304e3eece4f1e5fcd412330a781cb..4d439aa438ce53259019716833fbd381c27889ad 100644 (file)
@@ -48,7 +48,7 @@ MAIL ETIQUETTE
   each particular group and subculture there will be differences in what is
   acceptable and what is considered good manners.
 
-  This document outlines what we in the cURL project considers to be good
+  This document outlines what we in the curl project considers to be good
   etiquette, and primarily this focus on how to behave on and how to use our
   mailing lists.
 
index 68b6c20940351ce94d97637f3a9aedb12ba44f4c..6bfef6cd2efa9861715b71477b56cbdc2e9e3c70 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
@@ -894,7 +894,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
 
 18.3 prevent file overwriting
 
- Add an option that prevents cURL from overwriting existing local files. When
+ Add an option that prevents curl from overwriting existing local files. When
  used, and there already is an existing file with the target file name
  (either -O or -o), a number should be appended (and increased if already
  existing). So that index.html becomes first index.html.1 and then
@@ -1017,7 +1017,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
 
 19.2 Enable PIE and RELRO by default
 
- Especially when having programs that execute cURL via the command line, PIE
+ Especially when having programs that execute curl via the command line, PIE
  renders the exploitation of memory corruption vulnerabilities a lot more
  difficult. This can be attributed to the additional information leaks being
  required to conduct a successful attack. RELRO, on the other hand, masks
@@ -1025,7 +1025,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
  of techniques that come in handy when attackers are able to arbitrarily
  overwrite memory. A few tests showed that enabling these features had close
  to no impact, neither on the performance nor on the general functionality of
- cURL.
+ curl.
 
 
 20. Test suite
index 961fd98283211f9e96e70bd520e9cc70d3b131aa..b9f75f4db5dba883b896d5b755acfb08814a3ee5 100644 (file)
@@ -30,7 +30,7 @@ CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_COOKIELIST,
                            struct curl_slist **cookies);
 .SH DESCRIPTION
 Pass a pointer to a 'struct curl_slist *' to receive a linked-list of all
-cookies cURL knows (expired ones, too). Don't forget to call
+cookies curl knows (expired ones, too). Don't forget to call
 \fIcurl_slist_free_all(3)\fP on the list after it has been used.  If there are
 no cookies (cookies for the handle have not been enabled or simply none have
 been received) 'struct curl_slist *' will be set to point to NULL.
index 299c3ccba00f1fa4e5a48b71f87978127986e0b9..ed2b91b551d0afd981480686d3e651bba0721ec2 100644 (file)
@@ -5,7 +5,7 @@
 .\" *                            | (__| |_| |  _ <| |___
 .\" *                             \___|\___/|_| \_\_____|
 .\" *
-.\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
 .\" *
 .\" * This software is licensed as described in the file COPYING, which
 .\" * you should have received as part of this distribution. The terms
@@ -33,9 +33,9 @@ to \fIpath\fP. If \fIpath\fP is NULL, then Unix domain sockets are disabled. An
 empty string will result in an error at some point, it will not disable use of
 Unix domain sockets.
 
-When enabled, cURL will connect to the Unix domain socket instead of
+When enabled, curl will connect to the Unix domain socket instead of
 establishing a TCP connection to a host. Since no TCP connection is created,
-cURL does not need to resolve the DNS hostname in the URL.
+curl does not need to resolve the DNS hostname in the URL.
 
 The maximum path length on Cygwin, Linux and Solaris is 107. On other platforms
 it might be even less.
index 5591d22209fb8518605363a60593338d86b59458..4f55b30e761515e1a3d5381b7dbb7b469efb1f3f 100644 (file)
@@ -57,7 +57,7 @@ bool Curl_amiga_init()
   }
 
   if(SocketBaseTags(SBTM_SETVAL(SBTC_ERRNOPTR(sizeof(errno))), (ULONG) &errno,
-                    SBTM_SETVAL(SBTC_LOGTAGPTR), (ULONG) "cURL",
+                    SBTM_SETVAL(SBTC_LOGTAGPTR), (ULONG) "curl",
                     TAG_DONE)) {
     __request("SocketBaseTags ERROR");
     return FALSE;
index 08adf6d24a439011460ba3f1e16b277ee3214332..517c39ffcb5cc39b9338584136c0456480e98ec9 100644 (file)
@@ -217,7 +217,7 @@ curl_calloc_callback Curl_ccalloc;
 #endif
 
 /**
- * curl_global_init() globally initializes cURL given a bitwise set of the
+ * curl_global_init() globally initializes curl given a bitwise set of the
  * different features of what to initialize.
  */
 static CURLcode global_init(long flags, bool memoryfuncs)
@@ -292,7 +292,7 @@ static CURLcode global_init(long flags, bool memoryfuncs)
 
 
 /**
- * curl_global_init() globally initializes cURL given a bitwise set of the
+ * curl_global_init() globally initializes curl given a bitwise set of the
  * different features of what to initialize.
  */
 CURLcode curl_global_init(long flags)
@@ -301,7 +301,7 @@ CURLcode curl_global_init(long flags)
 }
 
 /*
- * curl_global_init_mem() globally initializes cURL and also registers the
+ * curl_global_init_mem() globally initializes curl and also registers the
  * user provided callback routines.
  */
 CURLcode curl_global_init_mem(long flags, curl_malloc_callback m,
@@ -333,7 +333,7 @@ CURLcode curl_global_init_mem(long flags, curl_malloc_callback m,
 }
 
 /**
- * curl_global_cleanup() globally cleanups cURL, uses the value of
+ * curl_global_cleanup() globally cleanups curl, uses the value of
  * "init_flags" to determine what needs to be cleaned up and what doesn't.
  */
 void curl_global_cleanup(void)
index 50b365dbbf31871b326604b3aa5e34b8041634da..c1efbadc67de09b4acde2a1c31737fb8e67d43ce 100644 (file)
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -44,12 +44,12 @@ BEGIN
   BEGIN
     BLOCK "040904b0"
     BEGIN
-      VALUE "CompanyName",      "The cURL library, https://curl.haxx.se/\0"
+      VALUE "CompanyName",      "The curl library, https://curl.haxx.se/\0"
       VALUE "FileDescription",  "libcurl Shared Library\0"
       VALUE "FileVersion",      LIBCURL_VERSION "\0"
       VALUE "InternalName",     "libcurl\0"
       VALUE "OriginalFilename", "libcurl.dll\0"
-      VALUE "ProductName",      "The cURL library\0"
+      VALUE "ProductName",      "The curl library\0"
       VALUE "ProductVersion",   LIBCURL_VERSION "\0"
       VALUE "LegalCopyright",   "© " LIBCURL_COPYRIGHT "\0"
       VALUE "License",          "https://curl.haxx.se/docs/copyright.html\0"
index 9c58e6b7735053de6d34db94e96a9fdd4805ab7e..edb96d201d7788a05574594d415c701f72515225 100644 (file)
@@ -427,7 +427,7 @@ curl_share_strerror(CURLSHcode error)
 
 #ifdef USE_WINSOCK
 
-/* This function handles most / all (?) Winsock errors cURL is able to produce.
+/* This function handles most / all (?) Winsock errors curl is able to produce.
  */
 static const char *
 get_winsock_error (int err, char *buf, size_t len)
index 30ae44493b9b9b033ad011ee4ab167f10f710b5c..3a2c3a0fbc4b95735652939804765487e99ba044 100644 (file)
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -44,12 +44,12 @@ BEGIN
   BEGIN
     BLOCK "040904b0"
     BEGIN
-      VALUE "CompanyName",      "cURL, https://curl.haxx.se/\0"
-      VALUE "FileDescription",  "The cURL executable\0"
+      VALUE "CompanyName",      "curl, https://curl.haxx.se/\0"
+      VALUE "FileDescription",  "The curl executable\0"
       VALUE "FileVersion",      CURL_VERSION "\0"
       VALUE "InternalName",     "curl\0"
       VALUE "OriginalFilename", "curl.exe\0"
-      VALUE "ProductName",      "The cURL executable\0"
+      VALUE "ProductName",      "The curl executable\0"
       VALUE "ProductVersion",   CURL_VERSION "\0"
       VALUE "LegalCopyright",   "© " CURL_COPYRIGHT "\0"
       VALUE "License",          "https://curl.haxx.se/docs/copyright.html\0"