Commit 44eff497 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Fix typo in ssl/d1_pkt.c.

parent 8b452002
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ static int satsub64be(const unsigned char *v1,const unsigned char *v2)
		if (((size_t)v1|(size_t)v2)&0x7)	break;

		l  = *((long *)v1);
		l =- *((long *)v2);
		l -= *((long *)v2);
		if (l>128)		return 128;
		else if (l<-128)	return -128;
		else			return (int)l;