| 4358 | // |
| 4359 | |
| 4360 | static const TEXT* request_trans( const act* action, const gpre_req* request) |
| 4361 | { |
| 4362 | if (action->act_type == ACT_open) |
| 4363 | { |
| 4364 | const TEXT* trname = ((open_cursor*) action->act_object)->opn_trans; |
| 4365 | if (!trname) |
| 4366 | trname = names[isc_trans_pos]; |
| 4367 | return trname; |
| 4368 | } |
| 4369 | |
| 4370 | return request ? request->req_trans : names[isc_trans_pos]; |
| 4371 | } |
| 4372 | |
| 4373 | |
| 4374 | //____________________________________________________________ |
no outgoing calls
no test coverage detected