summaryrefslogtreecommitdiff
path: root/ext/mysql/libmysql/strxmov.c
diff options
context:
space:
mode:
authorMySQL Team <mysql@php.net>2000-10-20 22:26:48 +0000
committerMySQL Team <mysql@php.net>2000-10-20 22:26:48 +0000
commita2dbb10eb14801370522ec248e1d819eb38a83a2 (patch)
treec3888dc986fa7baa6937b38d485af20d8ee81d9d /ext/mysql/libmysql/strxmov.c
parentebaf484830ab5c7a0e14a9b43a174916330cd031 (diff)
downloadphp-git-a2dbb10eb14801370522ec248e1d819eb38a83a2.tar.gz
Update libmysql to 3.23 version. No major changes visible to the user - mostly
bug fixes and other maintenance-oriented changes.
Diffstat (limited to 'ext/mysql/libmysql/strxmov.c')
-rw-r--r--ext/mysql/libmysql/strxmov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/libmysql/strxmov.c b/ext/mysql/libmysql/strxmov.c
index 13811d043f..7ee1d303ee 100644
--- a/ext/mysql/libmysql/strxmov.c
+++ b/ext/mysql/libmysql/strxmov.c
@@ -23,7 +23,7 @@ char *strxmov(char *dst,const char *src, ...)
va_start(pvar,src);
while (src != NullS) {
- while (*dst++ = *src++) ;
+ while ((*dst++ = *src++)) ;
dst--;
src = va_arg(pvar, char *);
}