summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/des/u_nfold.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/crypto/des/u_nfold.c b/src/lib/crypto/des/u_nfold.c
index 3dd919962..e35edd480 100644
--- a/src/lib/crypto/des/u_nfold.c
+++ b/src/lib/crypto/des/u_nfold.c
@@ -36,7 +36,6 @@
*/
#include "k5-int.h"
-#include <assert.h>
#define ROTATE_VALUE 13
@@ -93,7 +92,6 @@ mit_des_n_fold(inbuf, inlen, outbuf, outlen)
j = outlen-1;
while (k) {
- assert(j >= 0);
k += outbuf[j];
outbuf[j--] = k & 0xff;
k >>= 8;