diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-05 07:48:51 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-05 07:48:51 +0000 |
commit | 2f3212910f3486799ae30d83aeba1cdbdc7c992a (patch) | |
tree | e7b396dcc5a12e9f6376e031875de47557fdaa65 /ndb/src | |
parent | 9d2c186c5175419d579631d5bc5b1156f339126f (diff) | |
download | mariadb-git-2f3212910f3486799ae30d83aeba1cdbdc7c992a.tar.gz |
last try didnt work
Diffstat (limited to 'ndb/src')
-rw-r--r-- | ndb/src/common/util/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/common/util/version.c b/ndb/src/common/util/version.c index ae699beca14..b8408c7f201 100644 --- a/ndb/src/common/util/version.c +++ b/ndb/src/common/util/version.c @@ -37,7 +37,7 @@ Uint32 makeVersion(Uint32 major, Uint32 minor, Uint32 build) { char * getVersionString(Uint32 version, char * status) { char buff[100]; - if (status) + if (status && status[0] != 0) snprintf(buff, sizeof(buff), "Version %d.%d.%d (%s)", getMajor(version), |