| 3539 | // |
| 3540 | |
| 3541 | static const TEXT* request_trans( const act* action, const gpre_req* request) |
| 3542 | { |
| 3543 | if (action->act_type == ACT_open) |
| 3544 | { |
| 3545 | const TEXT* trname = ((open_cursor*) action->act_object)->opn_trans; |
| 3546 | if (!trname) |
| 3547 | trname = "gds_trans"; |
| 3548 | return trname; |
| 3549 | } |
| 3550 | |
| 3551 | return request ? request->req_trans : "gds_trans"; |
| 3552 | } |
| 3553 | |
| 3554 | |
| 3555 | //____________________________________________________________ |
no outgoing calls
no test coverage detected