Compare commits
No commits in common. "0b2881ba901a2fa94677f7444f0697614a350db5" and "e9a42139ef43158c36f02a708992998afea55ae3" have entirely different histories.
0b2881ba90
...
e9a42139ef
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ int main(int argc, char* argv[]){
|
|||
"interface\n", listen_port, forward_port);
|
||||
|
||||
printf("Aborting on PGP signed/encrypted messages: %s\n",
|
||||
abort_on_pgp ? "true" : "false");
|
||||
abort_on_pgp ? "true":false);
|
||||
|
||||
printf("Aborting on DKIM signed messages: %s\n",
|
||||
abort_on_dkim ? "true" : "false");
|
||||
|
@ -118,7 +118,7 @@ int main(int argc, char* argv[]){
|
|||
instance_id);
|
||||
|
||||
printf("Only saving bas64 encoded files: %s\n",
|
||||
only_base64 ? "true":"false");
|
||||
only_base64 ? "true":false);
|
||||
|
||||
|
||||
printf("Placing files into [%s] linked by [%s]\n", directory,
|
||||
|
|
Loading…
Reference in a new issue