aboutsummaryrefslogtreecommitdiff
path: root/networking/tls_pstm.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/tls_pstm.c')
-rw-r--r--networking/tls_pstm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/tls_pstm.c b/networking/tls_pstm.c
index e5544ab11..99929031d 100644
--- a/networking/tls_pstm.c
+++ b/networking/tls_pstm.c
@@ -438,9 +438,9 @@ int32 FAST_FUNC pstm_read_unsigned_bin(pstm_int *a, unsigned char *b, int32 c)
438 int32 idx = (c - 1) & ~3; 438 int32 idx = (c - 1) & ~3;
439 switch (c % 4) { 439 switch (c % 4) {
440 case 0: do { pd[idx+0] = *b++; 440 case 0: do { pd[idx+0] = *b++;
441 case 3: pd[idx+1] = *b++; 441 case 3: pd[idx+1] = *b++;
442 case 2: pd[idx+2] = *b++; 442 case 2: pd[idx+2] = *b++;
443 case 1: pd[idx+3] = *b++; 443 case 1: pd[idx+3] = *b++;
444 idx -= 4; 444 idx -= 4;
445 } while ((c -= 4) > 0); 445 } while ((c -= 4) > 0);
446 } 446 }
@@ -1427,7 +1427,7 @@ static int32 pstm_div(psPool_t *pool, pstm_int *a, pstm_int *b, pstm_int *c,
1427 } 1427 }
1428 1428
1429 /* while (q{i-t-1} * (yt * b + y{t-1})) > 1429 /* while (q{i-t-1} * (yt * b + y{t-1})) >
1430 xi * b**2 + xi-1 * b + xi-2 1430 xi * b**2 + xi-1 * b + xi-2
1431 1431
1432 do q{i-t-1} -= 1; 1432 do q{i-t-1} -= 1;
1433 */ 1433 */