|
Description
|
## 08/12/23 gww ##
case ADT_MSG:
list = &adt_msg_text[(enum adt_login_text)def->dd_input_size];
list_index = ((union convert *)p_data)->msg_selector;
The enum should be adt_msg_list. Indeed adt_login_text is an enum, but
it is not the enum for the set of message lists, it is the enum for the
obsolete login_text message list. This is confusing for anyone maintaining
this code.
Gary..
|