projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55142b2
)
Removed debugging assert() statement
author
Richard Basch
<probe@mit.edu>
Tue, 28 Nov 1995 16:38:53 +0000
(16:38 +0000)
committer
Richard Basch
<probe@mit.edu>
Tue, 28 Nov 1995 16:38:53 +0000
(16:38 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7138
dc483132
-0cff-0310-8789-
dd5450dbe970
src/lib/crypto/des/u_nfold.c
patch
|
blob
|
history
diff --git
a/src/lib/crypto/des/u_nfold.c
b/src/lib/crypto/des/u_nfold.c
index 3dd9199620cff9e91bc0d77318ecefd26e993d7f..e35edd480e61c761bb312fd4646d128cadba561c 100644
(file)
--- 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;