[git commit] tls: remove one overzealous debugging statement

Denys Vlasenko vda.linux at googlemail.com
Tue Oct 5 12:01:52 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=92402d5e0a2b8e0692b2eebd15b893bdbe4c3a34
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/tls_sp_c32.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c
index 5b4c7e97c..7c6229ffd 100644
--- a/networking/tls_sp_c32.c
+++ b/networking/tls_sp_c32.c
@@ -395,12 +395,8 @@ static void sp_256_mont_reduce_10(sp_digit* a /*, const sp_digit* m, sp_digit mp
 	}
 
 	sp_256_mont_shift_10(a, a);
-//TODO: can below condition ever be true? Doesn't it require 512+th bit(s) in a to be set?
 	if ((a[9] >> 22) > 0)
-{
-dbg("THIS HAPPENS\n");
 		sp_256_sub_10(a, a, m);
-}
 	sp_256_norm_10(a);
 }
 


More information about the busybox-cvs mailing list