diff -r 4c13173e4247 src/rar_fmt.c --- a/src/rar_fmt.c Wed Jun 08 10:25:19 2011 -0700 +++ b/src/rar_fmt.c Wed Jun 08 10:26:09 2011 -0700 @@ -118,9 +118,6 @@ strerror(errno)); error(); } - printf - ("processing ciphertext at offset : %ld, PACK_SIZE: %d, UNP_SIZE : %d\n", - pos, PACK_SIZE, UNP_SIZE); fseek(fp, pos, SEEK_SET); ciphertext = (unsigned char *) malloc(PACK_SIZE); plaintext = (unsigned char *) malloc(PACK_SIZE); @@ -243,7 +240,10 @@ printf("\n"); */ /* TODO: compare computed CRC with stored CRC (FILE_CRC) */ - + + /* warn about missing -p mode support */ + fprintf(stderr, "RAR -p mode support is not complete yet!\n"); + // error(); } }