lib: move curl_path.[ch] into vssh/

As this contains code only used by SSH backends.

Closes #15284
This commit is contained in:
Daniel Stenberg 2024-10-13 17:56:23 +02:00
parent a7ccd02614
commit eb77297ccc
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
4 changed files with 4 additions and 4 deletions

View File

@ -97,9 +97,11 @@ LIB_VQUIC_HFILES = \
LIB_VSSH_CFILES = \ LIB_VSSH_CFILES = \
vssh/libssh.c \ vssh/libssh.c \
vssh/libssh2.c \ vssh/libssh2.c \
vssh/curl_path.c \
vssh/wolfssh.c vssh/wolfssh.c
LIB_VSSH_HFILES = \ LIB_VSSH_HFILES = \
vssh/curl_path.h \
vssh/ssh.h vssh/ssh.h
LIB_CFILES = \ LIB_CFILES = \
@ -131,7 +133,6 @@ LIB_CFILES = \
curl_memrchr.c \ curl_memrchr.c \
curl_multibyte.c \ curl_multibyte.c \
curl_ntlm_core.c \ curl_ntlm_core.c \
curl_path.c \
curl_range.c \ curl_range.c \
curl_rtmp.c \ curl_rtmp.c \
curl_sasl.c \ curl_sasl.c \
@ -273,7 +274,6 @@ LIB_HFILES = \
curl_memrchr.h \ curl_memrchr.h \
curl_multibyte.h \ curl_multibyte.h \
curl_ntlm_core.h \ curl_ntlm_core.h \
curl_path.h \
curl_printf.h \ curl_printf.h \
curl_range.h \ curl_range.h \
curl_rtmp.h \ curl_rtmp.h \

View File

@ -22,7 +22,7 @@
* *
***************************************************************************/ ***************************************************************************/
#include "curlcheck.h" #include "curlcheck.h"
#include "curl_path.h" #include "vssh/curl_path.h"
#include "memdebug.h" #include "memdebug.h"
static CURLcode unit_setup(void) static CURLcode unit_setup(void)