mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
- More to go
# CVS sucks, you cannot mix -D with -r # However, thanks edin for reminding me that we have mini version tags # I still prefer subverison. There we don't have any problem of this kind
This commit is contained in:
@@ -35,7 +35,7 @@ onig_version(void)
|
||||
{
|
||||
static char s[12];
|
||||
|
||||
snprintf(s, sizeof(s), "%d.%d.%d",
|
||||
sprintf(s, sizeof(s), "%d.%d.%d",
|
||||
ONIGURUMA_VERSION_MAJOR,
|
||||
ONIGURUMA_VERSION_MINOR,
|
||||
ONIGURUMA_VERSION_TEENY);
|
||||
@@ -47,7 +47,7 @@ onig_copyright(void)
|
||||
{
|
||||
static char s[58];
|
||||
|
||||
snprintf(s, sizeof(s), "Oniguruma %d.%d.%d : Copyright (C) 2002-2007 K.Kosako",
|
||||
sprintf(s, sizeof(s), "Oniguruma %d.%d.%d : Copyright (C) 2002-2007 K.Kosako",
|
||||
ONIGURUMA_VERSION_MAJOR,
|
||||
ONIGURUMA_VERSION_MINOR,
|
||||
ONIGURUMA_VERSION_TEENY);
|
||||
|
||||
Reference in New Issue
Block a user