Repository: qpid-proton Updated Branches: refs/heads/master 57d6dcc7f -> 5f06462f3
PROTON-344: Fix code not to trigger pedantic C++ warning Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/5f06462f Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/5f06462f Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/5f06462f Branch: refs/heads/master Commit: 5f06462f37fa10d2da36e7755fa813c5b57986bd Parents: 57d6dcc Author: Andrew Stitcher <[email protected]> Authored: Tue Apr 28 15:48:04 2015 -0400 Committer: Andrew Stitcher <[email protected]> Committed: Tue Apr 28 15:49:29 2015 -0400 ---------------------------------------------------------------------- proton-c/include/proton/sasl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/5f06462f/proton-c/include/proton/sasl.h ---------------------------------------------------------------------- diff --git a/proton-c/include/proton/sasl.h b/proton-c/include/proton/sasl.h index 635e7a8..b2a8a27 100644 --- a/proton-c/include/proton/sasl.h +++ b/proton-c/include/proton/sasl.h @@ -53,7 +53,7 @@ typedef enum { PN_SASL_AUTH=1, /** failed due to bad credentials */ PN_SASL_SYS=2, /** failed due to a system error */ PN_SASL_PERM=3, /** failed due to unrecoverable error */ - PN_SASL_TEMP=4, /** failed due to transient error */ + PN_SASL_TEMP=4 /** failed due to transient error */ } pn_sasl_outcome_t; /** Construct an Authentication and Security Layer object --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
