From c8753fb0142428ae24b2fb3863448b1e1851c1e7 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Mon, 5 May 2008 19:58:25 +0000 Subject: [PATCH] Merged revisions 115309 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r115309 | tilghman | 2008-05-05 14:57:28 -0500 (Mon, 05 May 2008) | 10 lines Merged revisions 115308 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r115308 | tilghman | 2008-05-05 14:55:55 -0500 (Mon, 05 May 2008) | 2 lines Err, the documentation on the return value of ast_odbc_backslash_is_escape is exactly backwards. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@115310 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/res_odbc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asterisk/res_odbc.h b/include/asterisk/res_odbc.h index 3325cb729e..1defc816b2 100644 --- a/include/asterisk/res_odbc.h +++ b/include/asterisk/res_odbc.h @@ -96,7 +96,7 @@ int ast_odbc_sanity_check(struct odbc_obj *obj); /*! \brief Checks if the database natively supports backslash as an escape character. * \param obj The ODBC object - * \return Returns 1 if an ESCAPE clause is needed to support '\', 0 otherwise + * \return Returns 1 if backslash is a native escape character, 0 if an ESCAPE clause is needed to support '\' */ int ast_odbc_backslash_is_escape(struct odbc_obj *obj);