The function `uipc_msg_dump()' still references `_uipc_msg_get()'
even though it was removed from the module, rendering the function
unable to figure out the message version.
This commit changes the uipc module to use `ipc_msg_get_version()'
to query message versions.
local version_ok
version_ok="no"
- version=$(_uipc_msg_get "$msg" "version")
+ version=$(ipc_msg_get_version "$msg" "version")
if _uipc_msg_version_supported "$msg"; then
version_ok="yes"