mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:31:41 +03:00
tidy-up: miscellaneous
- whitespace, indent, comments, clang-format. - openssl: move feature guards within function blocks. - tunit: drop redundant blocks. Closes #20361
This commit is contained in:
parent
2c6f13093e
commit
814b54d83e
45 changed files with 1521 additions and 1527 deletions
|
|
@ -331,7 +331,7 @@ dnl we would like an httpd as test server
|
|||
dnl
|
||||
HTTPD_ENABLED="maybe"
|
||||
AC_ARG_WITH(test-httpd, [AS_HELP_STRING([--with-test-httpd=PATH],
|
||||
[where to find httpd/apache2 for testing])],
|
||||
[where to find httpd/apache2 for testing])],
|
||||
[request_httpd=$withval], [request_httpd=check])
|
||||
if test "x$request_httpd" = "xcheck" || test "x$request_httpd" = "xyes"; then
|
||||
if test -x "/usr/sbin/apache2"; then
|
||||
|
|
@ -411,7 +411,7 @@ dnl we would like a sshd as test server
|
|||
dnl
|
||||
SSHD_ENABLED="maybe"
|
||||
AC_ARG_WITH(test-sshd, [AS_HELP_STRING([--with-test-sshd=PATH],
|
||||
[where to find sshd for testing])],
|
||||
[where to find sshd for testing])],
|
||||
[request_sshd=$withval], [request_sshd=check])
|
||||
if test "x$request_sshd" = "xcheck" || test "x$request_sshd" = "xyes"; then
|
||||
if test -x "/usr/sbin/sshd"; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue