X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0591238cc1669a0e6ac38b544854698e048c18d3..dd226cecb0cb5dad554ed3adf7bf60d2eb059a30:/projects/rlm_stg/iface.cpp diff --git a/projects/rlm_stg/iface.cpp b/projects/rlm_stg/iface.cpp index 2f8f3e37..f97593f4 100644 --- a/projects/rlm_stg/iface.cpp +++ b/projects/rlm_stg/iface.cpp @@ -52,12 +52,13 @@ STG_RESULT toResult(const RESULT& source) STG_RESULT result; result.modify = toSTGPairs(source.modify); result.reply = toSTGPairs(source.reply); + result.returnCode = source.returnCode; return result; } STG_RESULT emptyResult() { - STG_RESULT result = {NULL, NULL}; + STG_RESULT result = {NULL, NULL, STG_REJECT}; return result; }