Differences From Artifact [dac31f53fe]:
- File tlsBIO.c — part of check-in [227a7d7d10] at 2023-03-04 19:33:47 on branch trunk — Casting clean-ups to fix compiler warnings. Source: https://sourceforge.net/p/tls/patches/11/ and https://sourceforge.net/p/tls/patches/_discuss/thread/988300e7/b6bb/attachment/patch-warnings (user: bohagan, size: 8956) [annotate] [blame] [check-ins using]
To Artifact [b4e01a8adf]:
- File tlsBIO.c — part of check-in [e2e798877b] at 2023-03-04 23:33:32 on branch trunk — Patch by Sergei Golovan (Debian) to fix the compiler warnings about implicit fall-through in case. Source: File: https://sources.debian.org/src/tcltls/1.7.22-3/debian/patches/fall-through.patch (user: bohagan, size: 9000) [annotate] [blame] [check-ins using]
︙ | |||
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | + + + + | dprintf("BioCtrl(%p, 0x%x, 0x%lx, %p)", (void *) bio, cmd, num, ptr); switch (cmd) { case BIO_CTRL_RESET: dprintf("Got BIO_CTRL_RESET"); num = 0; ret = 0; break; case BIO_C_FILE_SEEK: dprintf("Got BIO_C_FILE_SEEK"); ret = 0; break; case BIO_C_FILE_TELL: dprintf("Got BIO_C_FILE_TELL"); ret = 0; break; case BIO_CTRL_INFO: dprintf("Got BIO_CTRL_INFO"); ret = 1; |
︙ |