Overview
Comment: | Clean up warnings on *nix builds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9d22adae760ca031868a4cbdd24825ab |
User & Date: | bohagan on 2024-02-24 02:45:52 |
Other Links: | manifest | tags |
Context
2024-02-24
| ||
03:02 | Clean up return statements check-in: a9e4d32d68 user: bohagan tags: trunk | |
02:45 | Clean up warnings on *nix builds check-in: 9d22adae76 user: bohagan tags: trunk | |
02:02 | Added missing cast nulls to char pointer check-in: ea98e5c0da user: bohagan tags: trunk | |
Changes
Modified configure from [3a830b9e57] to [e2f07628de].
︙ | |||
9324 9325 9326 9327 9328 9329 9330 | 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 | - + | # For the OpenSSL version, I chose to use the same library names that # OpenSSL uses as its default names. #-------------------------------------------------------------------- if test "${TEA_PLATFORM}" = "windows" ; then if test "$GCC" = "yes"; then |
︙ | |||
9348 9349 9350 9351 9352 9353 9354 | 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 | - + | PKG_LIBS="$PKG_LIBS $i" done fi else |
︙ |
Modified configure.ac from [d5f3ebd9b3] to [7ae4b1d7b6].
︙ | |||
173 174 175 176 177 178 179 | 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | - + - + | # Also, windows libraries and unix libraries have different names. # For the OpenSSL version, I chose to use the same library names that # OpenSSL uses as its default names. #-------------------------------------------------------------------- if test "${TEA_PLATFORM}" = "windows" ; then if test "$GCC" = "yes"; then |
︙ |
Modified generic/tlsBIO.c from [85f81b1367] to [e9c830967f].
︙ | |||
133 134 135 136 137 138 139 | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | - | chan = Tls_GetParent((State *) BIO_get_data(bio), 0); dprintf("BioCtrl(%p, 0x%x, 0x%lx, %p)", (void *) bio, cmd, num, ptr); switch (cmd) { case BIO_CTRL_RESET: dprintf("Got BIO_CTRL_RESET"); |
︙ |