| 1069 | } |
| 1070 | |
| 1071 | void HttpServletRequest::sprint_header(string& out, const char* prompt) |
| 1072 | { |
| 1073 | if (client_) { |
| 1074 | client_->sprint_header(out, prompt); |
| 1075 | } else { |
| 1076 | const char* ptr = acl_getenv_list(); |
| 1077 | if (ptr) { |
| 1078 | out.format("%s", ptr); |
| 1079 | } |
| 1080 | } |
| 1081 | } |
| 1082 | |
| 1083 | } // namespace acl |
| 1084 |
nothing calls this directly
no test coverage detected