| 896 | #endif // _WIN32 |
| 897 | |
| 898 | bool |
| 899 | rt_is_config_file(CryptContext *con, LPCWSTR FileName) |
| 900 | { |
| 901 | if (!con->GetConfig()->m_reverse) |
| 902 | return false; |
| 903 | else |
| 904 | return *FileName == '\\' && !lstrcmpi(FileName + 1, CONFIG_NAME); |
| 905 | } |
| 906 | |
| 907 | bool |
| 908 | rt_is_reverse_config_file(CryptContext *con, LPCWSTR FileName) |
no test coverage detected