Commit ac53354b authored by l.montecchiani@gmail.com's avatar l.montecchiani@gmail.com Committed by Rich Salz
Browse files

RT2193: #ifdef errors in bss_dgram.c



Problem with #ifdef in the BIO_CTRL_DGRAM_MTU_DISCOVER case that
is different from the BIO_CTRL_DGRAM_QUERY_MTU one which seems
correct.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 8d419330
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -577,10 +577,10 @@ static long dgram_ctrl(BIO *b, int cmd, long num, void *ptr)
			ret = -1;
			break;
			}
		ret = -1;
#else
		break;
		ret = -1;
#endif
		break;
	case BIO_CTRL_DGRAM_QUERY_MTU:
#if defined(OPENSSL_SYS_LINUX) && defined(IP_MTU)
		addr_len = (socklen_t)sizeof(addr);