From fc6530fa30adbbe425a72cb048062d646fcb300e Mon Sep 17 00:00:00 2001 From: Joe Bryan Date: Tue, 16 Oct 2018 18:02:55 -0400 Subject: [PATCH] allows -N without -F (temporary, revisit) --- vere/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vere/main.c b/vere/main.c index 13f164229a..eced433643 100644 --- a/vere/main.c +++ b/vere/main.c @@ -218,8 +218,8 @@ _main_getopt(c3_i argc, c3_c** argv) // XX revisit if ( (0 == u3_Host.ops_u.fak_c) && (c3y == u3_Host.ops_u.net) ) { - fprintf(stderr, "-N only makes sense with -F\n"); - return c3n; + // fprintf(stderr, "-N only makes sense with -F\n"); + u3_Host.ops_u.net = c3n; } else if ( (0 == u3_Host.ops_u.fak_c) && (c3n == u3_Host.ops_u.net) ) { u3_Host.ops_u.net = c3y; /* remote networking is always on in real mode. */ }