summaryrefslogtreecommitdiff
path: root/ws2a/bugcomment.c
diff options
context:
space:
mode:
Diffstat (limited to 'ws2a/bugcomment.c')
-rw-r--r--ws2a/bugcomment.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ws2a/bugcomment.c b/ws2a/bugcomment.c
index bb789ad..5214a99 100644
--- a/ws2a/bugcomment.c
+++ b/ws2a/bugcomment.c
@@ -73,7 +73,7 @@ char* useridhash(char* str){
unsigned int strp = 0;
i = 0;
while(i < tloop){
- printf("i:%d hashp:%u strp:%u tloop:%d\n",i,hashp,strp,tloop);
+ //printf("i:%d hashp:%u strp:%u tloop:%d\n",i,hashp,strp,tloop);
char tchar = str[strp%len];
hash[hashp%20] += str[strp%len];
str[strp%len]+=1;
@@ -82,7 +82,7 @@ char* useridhash(char* str){
i++;
}
i = 0;
- printf("Before characterizeing the hash, it was: %s\n",hash);
+ //printf("Before characterizeing the hash, it was: %s\n",hash);
while(i < 20){
//printf("Normalizeing %c(%u) as %c(%u)\n",hash[i],(unsigned int)hash[i],(hash[i] % 92) + 32,(hash[i] % 92) + 32);
unsigned int hashnum = hash[i];
@@ -91,7 +91,7 @@ char* useridhash(char* str){
hash[i] = modedhashnum + 32;
i++;
}
- printf("Resulting hash was:%s\n",hash);
+ //printf("Resulting hash was:%s\n",hash);
return hash;
}