| 756 | static unsigned int KEY_MASK = 0xFFFF; |
| 757 | |
| 758 | static inline void checkKey(unsigned int& key) |
| 759 | { |
| 760 | if ((key & PARTIAL_MASK) != getPartialVersion()) |
| 761 | key = KEY_MASK; |
| 762 | else |
| 763 | key &= KEY_MASK; |
| 764 | } |
| 765 | |
| 766 | unsigned int FirebirdConf::getVersion(CheckStatusWrapper* status) |
| 767 | { |
no test coverage detected