Index: lib/strtoofft.h
===================================================================
RCS file: /repository/curl/lib/strtoofft.h,v
retrieving revision 1.8
diff -u -r1.8 strtoofft.h
--- lib/strtoofft.h	23 Feb 2004 14:24:49 -0000	1.8
+++ lib/strtoofft.h	2 Mar 2004 17:17:59 -0000
@@ -45,7 +45,7 @@
 
 /* For MSVC7 we can use _strtoi64() which seems to be a strtoll() clone */
 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
-#define strtoll _strtoi64
+#define strtoofft _strtoi64
 #else /* MSVC7 or later */
 curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
 #define strtoofft curlx_strtoll
Index: src/Makefile.vc6
===================================================================
RCS file: /repository/curl/src/Makefile.vc6,v
retrieving revision 1.17
diff -u -r1.17 Makefile.vc6
--- src/Makefile.vc6	26 Feb 2004 16:23:30 -0000	1.17
+++ src/Makefile.vc6	2 Mar 2004 17:17:59 -0000
@@ -58,6 +58,7 @@
 !ENDIF
 LFLAGSSSL = /LIBPATH:"$(OPENSSL_PATH)/out32"
 SSLLIBS   = libeay32.lib ssleay32.lib gdi32.lib 
+CFLAGS = $(CFLAGS) -DUSE_SSLEAY
 LINKLIBS  = $(LINKLIBS) $(SSLLIBS)
 LINKLIBS_DEBUG  = $(LINKLIBS_DEBUG) $(SSLLIBS)
 LFLAGS = $(LFLAGS) $(LFLAGSSSL)

