using -v instead of -D to show number of recipients

This commit is contained in:
TLINDEN
2016-08-24 21:26:37 +02:00
parent ab5b6c0b13
commit 9132dd53bc
3 changed files with 4 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
Installation Instructions
*************************
Copyright (C) 1994-1996, 1999-2002, 2004-2012 Free Software Foundation,
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
Inc.
Copying and distribution of this file, with or without modification,
@@ -12,8 +12,8 @@ without warranty of any kind.
Basic Installation
==================
Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
Briefly, the shell command `./configure && make && make install'
should configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented

View File

@@ -160,9 +160,6 @@
*/
#undef LT_OBJDIR
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O
/* Name of package */
#undef PACKAGE

View File

@@ -22,7 +22,6 @@
#include "crypto.h"
extern int debug;
/* asym encr */
@@ -200,7 +199,7 @@ size_t pcp_decrypt_stream(PCPCTX *ptx, Pcpstream *in, Pcpstream* out, pcp_key_t
}
lenrec = be32toh(lenrec);
if (debug) {
if (ptx->verbose) {
fprintf(stderr, "DEBUG: input is encrypted for %ld recipients\n", (long int)lenrec);
}