﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
67	Typo in _imft_std_commands.incl.pl1	anonymous	Eric Swenson	"'_imft_std_commands.incl.pl1' contains:

    /* Standard command/reply types */

    dcl (IMFT_DATA                initial (0),                  /* data record */
         IMFT_SYNC1               initial (1),                  /* first half of synchronization sequence */
         IMFT_SYNC2               initial (2),                  /* second half of synchronization sequence */
         IMFT_ABORT               initial (3),                  /* abort the current operation */
         IMFT_LOGOUT              initial (4),                  /* one side requests that the other logout */
         IMFT_RESYNCHRONIZE       initial (5),                  /* reply requesting resynchronization */
         IMFT_AIM1                initial (6),                  /* first half of establsihing AIM ceiling */
         IMFT_AIM2                initial (7))                  /* second half of establishing AIM ceiling */
              fixed binary (7) unaligned unsigned static options (constant);

I don't think the ""fixed binary (7)"" is correct.

Typical usage is:

     if imft_logical_record.type ^= IMFT_DATA

where 'type' is declared:

     3 type fixed bin,  /* types are defined in _imft_std_commands.incl.pl1 */


It seems to me that 'fixed binary (7)' should be 'fixed binary'

"	defect	closed	minor		Unbundled Library		wontfix		
