| 3955 | // |
| 3956 | |
| 3957 | static const TEXT* request_trans(const act* action, const gpre_req* request) |
| 3958 | { |
| 3959 | if (action->act_type == ACT_open) |
| 3960 | { |
| 3961 | const TEXT* trname = ((open_cursor*) action->act_object)->opn_trans; |
| 3962 | if (!trname) |
| 3963 | trname = "GDS__TRANS"; |
| 3964 | return trname; |
| 3965 | } |
| 3966 | |
| 3967 | return request ? request->req_trans : "GDS__TRANS"; |
| 3968 | } |
| 3969 | |
| 3970 | |
| 3971 | //____________________________________________________________ |
no outgoing calls
no test coverage detected