diff options
Diffstat (limited to 'sql/net_pkg.cc')
-rw-r--r-- | sql/net_pkg.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/net_pkg.cc b/sql/net_pkg.cc index 2308aa40d52..d412b71b363 100644 --- a/sql/net_pkg.cc +++ b/sql/net_pkg.cc @@ -319,11 +319,11 @@ bool net_store_data(String* packet, I_List<i_string>* str_list) i_string* s; while((s=it++)) - { - if(tmp.length()) - tmp.append(','); - tmp.append(s->ptr); - } + { + if(tmp.length()) + tmp.append(','); + tmp.append(s->ptr); + } return net_store_data(packet, (char*)tmp.ptr(), tmp.length()); } |