Skip to content

Commit 8da1e21

Browse files
jherlandgitster
authored andcommitted
Consistency: Use "libcurl" instead of "cURL library" and "curl"
Signed-off-by: Johan Herland <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b96317f commit 8da1e21

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Documentation/git-http-push.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ DESCRIPTION
1515
Sends missing objects to remote repository, and updates the
1616
remote branch.
1717

18-
*NOTE*: This command is temporarily disabled if your cURL
19-
library is older than 7.16, as the combination has been reported
18+
*NOTE*: This command is temporarily disabled if your libcurl
19+
is older than 7.16, as the combination has been reported
2020
not to work and sometimes corrupts repository.
2121

2222
OPTIONS

Documentation/howto/setup-git-server-over-http.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Step 3: setup the client
186186
------------------------
187187

188188
Make sure that you have HTTP support, i.e. your git was built with
189-
curl (version more recent than 7.10). The command 'git http-push' with
189+
libcurl (version more recent than 7.10). The command 'git http-push' with
190190
no argument should display a usage message.
191191

192192
Then, add the following to your $HOME/.netrc (you can do without, but will be

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all::
1313
# Define NO_OPENSSL environment variable if you do not have OpenSSL.
1414
# This also implies MOZILLA_SHA1.
1515
#
16-
# Define NO_CURL if you do not have curl installed. git-http-pull and
16+
# Define NO_CURL if you do not have libcurl installed. git-http-pull and
1717
# git-http-push are not built, and you cannot use http:// and https://
1818
# transports.
1919
#

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ AC_CHECK_LIB([crypto], [SHA1_Init],
158158
AC_SUBST(NEEDS_SSL_WITH_CRYPTO)
159159
AC_SUBST(NO_OPENSSL)
160160
#
161-
# Define NO_CURL if you do not have curl installed. git-http-pull and
161+
# Define NO_CURL if you do not have libcurl installed. git-http-pull and
162162
# git-http-push are not built, and you cannot use http:// and https://
163163
# transports.
164164
AC_CHECK_LIB([curl], [curl_global_init],

0 commit comments

Comments
 (0)