********> bugfix.36 Author: Bill Ross Date: Mar 8 99 Programs: Leap Severity: moderate Description: On Cray T3E compilation, error in parser.y. Tech note: Oddly, most compilers make this work ok and w/out warning. Fix: Make the following change to parser.y: --------------------------------------------------------------------------- *** OLD parser.y --- NEW parser.y *************** *** 800,806 **** /* Check if there is an alias that is an exact match */ if ( iMax = iVarArrayElementCount( GvaAlias ) ) { ALIAS aAlias; ! aAlias = PVAI( GvaAlias, ALIAS, 0 ); for ( i=0; isName, sPossibleCmd ) == 0 ) { strcpy( sPossibleCmd, aAlias->sCommand ); --- 800,806 ---- /* Check if there is an alias that is an exact match */ if ( iMax = iVarArrayElementCount( GvaAlias ) ) { ALIAS aAlias; ! aAlias = PVAI( GvaAlias, ALIASt, 0 ); for ( i=0; isName, sPossibleCmd ) == 0 ) { strcpy( sPossibleCmd, aAlias->sCommand ); ---------------------------------------------------------------------------