From b661f6c2bda1d6394611e55b4edebc585572a7b0 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 22 Jan 2013 16:03:18 -0800 Subject: [PATCH] Fix sim_tmxr flag settings to avoid an overwrite which was introduced when the dynflags was added --- sim_tmxr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_tmxr.c b/sim_tmxr.c index ff2c46d9..b1fb7089 100644 --- a/sim_tmxr.c +++ b/sim_tmxr.c @@ -2561,7 +2561,7 @@ if ((mp->lines > 1) || ((mp->master == 0) && (mp->ldsc[0].connecting == 0) && (mp->ldsc[0].serport == 0))) - uptr->flags = uptr->dynflags | UNIT_ATTMULT; /* allow multiple attach commands */ + uptr->dynflags = uptr->dynflags | UNIT_ATTMULT; /* allow multiple attach commands */ #if defined(SIM_ASYNCH_IO) && defined(SIM_ASYNCH_MUX) if (!async || (uptr->flags & TMUF_NOASYNCH)) /* if asynch disabled */