Skip to content
This repository was archived by the owner on May 22, 2019. It is now read-only.

Commit 570b1b5

Browse files
Push v71 files
1 parent 0c9e481 commit 570b1b5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/abstract_ext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2828
#include "spdlog/spdlog.h"
2929

3030

31-
#define EXTDB_VERSION "70"
31+
#define EXTDB_VERSION "71"
3232
#define EXTDB_CONF_VERSION 5
3333

3434

src/dll-debug.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#define PRODUCT_NAME_STR "extDB2 Debug"
44
#define PRODUCT_DESCRIPTION "Arma Kitchen Sink Extension"
5-
#define VER_VERSION 70,0,0,0
6-
#define VER_VERSION_STR "70.0.0.0"
5+
#define VER_VERSION 71,0,0,0
6+
#define VER_VERSION_STR "71.0.0.0"
77

88
VS_VERSION_INFO VERSIONINFO
99
FILEVERSION VER_VERSION

src/protocols/sql_custom_v2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,14 +359,14 @@ bool SQL_CUSTOM_V2::init(AbstractExt *extension, const std::string &database_id,
359359
custom_calls[call_name].sql_inputs_options.push_back(std::vector < Value_Options >());
360360

361361
// Get Input Options
362-
Poco::StringTokenizer tokens_input(template_ini->getString((call_name + ".SQL" + sql_line_num_str + "_INPUTS"), ""), ",");
362+
Poco::StringTokenizer tokens_input(template_ini->getString((call_name + ".SQL" + sql_line_num_str + "_INPUTS"), ""), ",", Poco::StringTokenizer::TOK_TRIM);
363363
for (auto &token_input : tokens_input)
364364
{
365365
// Initialize Default Input Options
366366
Value_Options inputs_options;
367367
inputs_options.check = template_ini->getBool(call_name + ".Sanitize Input Value Check", default_input_sanitize_value_check);
368368

369-
Poco::StringTokenizer tokens_input_options(token_input, "-");
369+
Poco::StringTokenizer tokens_input_options(token_input, "-", Poco::StringTokenizer::TOK_TRIM);
370370
for (auto &sub_token_input : tokens_input_options)
371371
{
372372
int temp_int;

0 commit comments

Comments
 (0)