aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-to-portable.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-05-13 14:39:40 +0200
committerMattias Andrée <maandree@kth.se>2017-05-13 14:39:40 +0200
commit0f189ac84817338ce8ec1572244d1aa680a232f8 (patch)
tree11fa6e9b68a02d10bb2d5055afa0cbf4674c5628 /src/blind-to-portable.c
parentAdd blind-to-portable and blind-from-portable (diff)
downloadblind-0f189ac84817338ce8ec1572244d1aa680a232f8.tar.gz
blind-0f189ac84817338ce8ec1572244d1aa680a232f8.tar.bz2
blind-0f189ac84817338ce8ec1572244d1aa680a232f8.tar.xz
Add man pages for blind-{to,from}-portable and make -s the default (and invert it's meaning)
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--src/blind-to-portable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blind-to-portable.c b/src/blind-to-portable.c
index 9cb0448..b88f0be 100644
--- a/src/blind-to-portable.c
+++ b/src/blind-to-portable.c
@@ -99,12 +99,12 @@ int
main(int argc, char *argv[])
{
struct stream stream;
- int strict = 0;
+ int strict = 1;
void (*process)(struct stream *stream, int strict);
ARGBEGIN {
case 's':
- strict = 1;
+ strict = 0;
break;
default:
usage();