Revert debugging that was accidently committed in r316314

This commit is contained in:
Allan Jude 2017-03-31 03:11:25 +00:00
parent 8554754c7b
commit f901525697
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=316315

View file

@ -54,12 +54,8 @@ static off_t matchlen(u_char *old,off_t oldsize,u_char *new,off_t newsize)
{
off_t i;
printf("old=%p new=%p\n", old, new);
//printf("oldsize=%ld newsize=%ld\n", oldsize, newsize);
for(i=0;(i<oldsize)&&(i<newsize);i++) {
//printf("old[%ld] != new[%ld]\n", i, i);
for(i=0;(i<oldsize)&&(i<newsize);i++)
if(old[i]!=new[i]) break;
}
return i;
}
@ -70,9 +66,6 @@ static off_t search(off_t *I,u_char *old,off_t oldsize,
off_t x,y;
if(en-st<2) {
printf("oldsize=%ld, newsize=%ld\n", oldsize, newsize);
printf("x=matchlen(old, oldsize=%ld st=%ld I[st]=%ld, new, newsize=%ld)\n", oldsize-I[st], st, I[st], newsize);
printf("y=matchlen(old, oldsize=%ld en=%ld I[en]=%ld, new, newsize=%ld)\n", oldsize-I[en], en, I[en], newsize);
x=matchlen(old+I[st],oldsize-I[st],new,newsize);
y=matchlen(old+I[en],oldsize-I[en],new,newsize);