| 4126 | // |
| 4127 | |
| 4128 | static const TEXT* request_trans( const act* action, const gpre_req* request) |
| 4129 | { |
| 4130 | if (action->act_type == ACT_open) |
| 4131 | { |
| 4132 | const TEXT* trname = ((open_cursor*) action->act_object)->opn_trans; |
| 4133 | if (!trname) |
| 4134 | trname = names[isc_trans_pos]; |
| 4135 | return trname; |
| 4136 | } |
| 4137 | |
| 4138 | return request ? request->req_trans : names[isc_trans_pos]; |
| 4139 | } |
| 4140 | |
| 4141 | |
| 4142 | //____________________________________________________________ |
no outgoing calls
no test coverage detected