Overview
Comment: | Fix build warnings. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bc575f4a87647585a6a7696a6af44c0e |
User & Date: | razzell on 2004-02-04 04:02:16 |
Other Links: | manifest | tags |
Context
2004-02-11
| ||
22:36 | Correct argument check error introduced in Revision 1.4. check-in: ec0e84eb75 user: razzell tags: trunk | |
2004-02-04
| ||
04:02 | Fix build warnings. check-in: bc575f4a87 user: razzell tags: trunk | |
2003-12-15
| ||
18:46 | Updated version to 1.5. check-in: 64bce88b33 user: razzell tags: trunk | |
Changes
Modified ChangeLog from [b74181207e] to [ca64c2cd1b].
|
Modified Makefile.in from [f5d09f008e] to [f7053b8960].
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - + | # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # |
︙ | |||
296 297 298 299 300 301 302 | 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | - - - | fixstrtod.$(OBJEXT): $(srcdir)/fixstrtod.c $(COMPILE) -c `@CYGPATH@ $(srcdir)/fixstrtod.c` -o $@ strncasecmp.$(OBJEXT): $(srcdir)/strncasecmp.c $(COMPILE) -c `@CYGPATH@ $(srcdir)/strncasecmp.c` -o $@ |
︙ |
Modified tls.c from [b31fec4fee] to [ebec730afe].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | /* * Copyright (C) 1997-1999 Matt Newman <[email protected]> * some modifications: * Copyright (C) 2000 Ajuba Solutions * Copyright (C) 2002 ActiveState Corporation * Copyright (C) 2003 Starfish Systems * |
︙ | |||
842 843 844 845 846 847 848 | 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 | - + | * SSL Callbacks */ SSL_set_app_data(statePtr->ssl, (VOID *)statePtr); /* point back to us */ SSL_set_verify(statePtr->ssl, verify, VerifyCallback); |
︙ | |||
1178 1179 1180 1181 1182 1183 1184 | 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 | - + | case C_REQ: { EVP_PKEY *pkey=NULL; X509 *cert=NULL; X509_NAME *name=NULL; Tcl_Obj **listv; int listc,i; |
︙ |
Modified tlsBIO.c from [3e7555cac8] to [eab9c4dc8f].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | - + - + | /* * Copyright (C) 1997-2000 Matt Newman <[email protected]> * |
︙ | |||
133 134 135 136 137 138 139 | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | - + | } static long BioCtrl (bio, cmd, num, ptr) BIO *bio; int cmd; long num; |
︙ |
Modified tlsInt.h from [fbfc578a79] to [bfa5033f5f].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + + + + | /* * Copyright (C) 1997-2000 Matt Newman <[email protected]> * |
︙ |