summaryrefslogtreecommitdiffstats
path: root/src/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/version.c')
-rw-r--r--src/version.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/version.c b/src/version.c
index 42d58897e5..3dc537d180 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 6,
+/**/
5,
/**/
4,
@@ -1328,9 +1330,9 @@ do_intro_line(
if (highest_patch())
{
// Check for 9.9x or 9.9xx, alpha/beta version
- if (isalpha((int)vers[3]))
+ if (SAFE_isalpha((int)vers[3]))
{
- int len = (isalpha((int)vers[4])) ? 5 : 4;
+ int len = (SAFE_isalpha((int)vers[4])) ? 5 : 4;
sprintf((char *)vers + len, ".%d%s", highest_patch(),
mediumVersion + len);
}