| 3394 | // |
| 3395 | |
| 3396 | static const TEXT* request_trans( const act* action, const gpre_req* request) |
| 3397 | { |
| 3398 | if (action->act_type == ACT_open) |
| 3399 | { |
| 3400 | const TEXT* trname = ((open_cursor*) action->act_object)->opn_trans; |
| 3401 | if (!trname) |
| 3402 | trname = "gds__trans"; |
| 3403 | return trname; |
| 3404 | } |
| 3405 | |
| 3406 | return request ? request->req_trans : "gds__trans"; |
| 3407 | } |
| 3408 | |
| 3409 | |
| 3410 | //____________________________________________________________ |
no outgoing calls
no test coverage detected