Skip to content

Commit

Permalink
schannel: Removed curl_ prefix from source files
Browse files Browse the repository at this point in the history
Removed the curl_ prefix from the schannel source files as discussed
with Marc and Daniel at FOSDEM.
  • Loading branch information
captain-caveman2k committed Feb 7, 2015
1 parent 05792d6 commit 761d516
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@

LIB_VTLS_CFILES = vtls/openssl.c vtls/gtls.c vtls/vtls.c vtls/nss.c \
vtls/polarssl.c vtls/polarssl_threadlock.c vtls/axtls.c \
vtls/cyassl.c vtls/curl_schannel.c vtls/curl_darwinssl.c vtls/gskit.c
vtls/cyassl.c vtls/schannel.c vtls/curl_darwinssl.c vtls/gskit.c

LIB_VTLS_HFILES = vtls/openssl.h vtls/vtls.h vtls/gtls.h \
vtls/nssg.h vtls/polarssl.h vtls/polarssl_threadlock.h vtls/axtls.h \
vtls/cyassl.h vtls/curl_schannel.h vtls/curl_darwinssl.h vtls/gskit.h
vtls/cyassl.h vtls/schannel.h vtls/curl_darwinssl.h vtls/gskit.h

LIB_CFILES = file.c timeval.c base64.c hostip.c progress.c formdata.c \
cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.vc6
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,6 @@ X_OBJS= \
$(DIROBJ)\curl_sasl.obj \
$(DIROBJ)\curl_sasl_gssapi.obj \
$(DIROBJ)\curl_sasl_sspi.obj \
$(DIROBJ)\curl_schannel.obj \
$(DIROBJ)\curl_sspi.obj \
$(DIROBJ)\curl_threads.obj \
$(DIROBJ)\cyassl.obj \
Expand Down Expand Up @@ -608,6 +607,7 @@ X_OBJS= \
$(DIROBJ)\progress.obj \
$(DIROBJ)\rawstr.obj \
$(DIROBJ)\rtsp.obj \
$(DIROBJ)\schannel.obj \
$(DIROBJ)\security.obj \
$(DIROBJ)\select.obj \
$(DIROBJ)\sendf.obj \
Expand Down
2 changes: 1 addition & 1 deletion lib/vtls/curl_schannel.c → lib/vtls/schannel.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#endif

#include "curl_sspi.h"
#include "curl_schannel.h"
#include "schannel.h"
#include "vtls.h"
#include "sendf.h"
#include "connect.h" /* for the connect timeout */
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/vtls/vtls.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "polarssl.h" /* PolarSSL versions */
#include "axtls.h" /* axTLS versions */
#include "cyassl.h" /* CyaSSL versions */
#include "curl_schannel.h" /* Schannel SSPI version */
#include "schannel.h" /* Schannel SSPI version */
#include "curl_darwinssl.h" /* SecureTransport (Darwin) version */

#ifndef MAX_PINNED_PUBKEY_SIZE
Expand Down
6 changes: 3 additions & 3 deletions packages/Symbian/group/libcurl.mmp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ SOURCE \
vtls/axtls.c idn_win32.c http_negotiate_sspi.c vtls/cyassl.c \
http_proxy.c non-ascii.c asyn-ares.c asyn-thread.c curl_gssapi.c \
curl_ntlm.c curl_ntlm_wb.c curl_ntlm_core.c curl_ntlm_msgs.c \
curl_sasl.c vtls/curl_schannel.c curl_multibyte.c \
vtls/curl_darwinssl.c bundles.c conncache.c curl_sasl_sspi.c smb.c \
curl_sasl_gssapi.c curl_endian.c curl_des.c
curl_sasl.c vtls/schannel.c curl_multibyte.c vtls/curl_darwinssl.c \
bundles.c conncache.c curl_sasl_sspi.c smb.c curl_sasl_gssapi.c \
curl_endian.c curl_des.c

USERINCLUDE ../../../lib ../../../include/curl
#ifdef ENABLE_SSL
Expand Down

0 comments on commit 761d516

Please sign in to comment.