PROTON-785: Add missing error code
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/4d25d88f Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/4d25d88f Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/4d25d88f Branch: refs/heads/go1 Commit: 4d25d88f5c96165c7c6aa24c28d214ad599caff8 Parents: bdac005 Author: Justin Ross <[email protected]> Authored: Wed Aug 9 12:09:19 2017 -0700 Committer: Justin Ross <[email protected]> Committed: Wed Aug 9 12:09:19 2017 -0700 ---------------------------------------------------------------------- proton-c/src/core/error.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/4d25d88f/proton-c/src/core/error.c ---------------------------------------------------------------------- diff --git a/proton-c/src/core/error.c b/proton-c/src/core/error.c index 70d36fa..e8e941f 100644 --- a/proton-c/src/core/error.c +++ b/proton-c/src/core/error.c @@ -130,6 +130,7 @@ const char *pn_code(int code) case PN_ARG_ERR: return "PN_ARG_ERR"; case PN_TIMEOUT: return "PN_TIMEOUT"; case PN_INTR: return "PN_INTR"; + case PN_INPROGRESS: return "PN_INPROGRESS"; case PN_OUT_OF_MEMORY: return "PN_OUT_OF_MEMORY"; default: return "<unknown>"; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
