2001-10-10 Joel Sherrill <joel@OARcorp.com>

* src/imfs/imfs_getchild.c: Correct length of static string
	as reported by Ibragimov Ilya <ibr@oktet.ru>.
This commit is contained in:
Joel Sherrill
2001-10-11 13:16:24 +00:00
parent ceead58b56
commit d9b0b86670
6 changed files with 18 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2001-10-10 Joel Sherrill <joel@OARcorp.com>
* src/imfs/imfs_getchild.c: Correct length of static string
as reported by Ibragimov Ilya <ibr@oktet.ru>.
2001-09-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/imfs/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -22,7 +22,7 @@
#include "imfs.h"
static char dotname[2] = ".";
static char dotdotname[2] = "..";
static char dotdotname[3] = "..";
IMFS_jnode_t *IMFS_find_match_in_dir(
IMFS_jnode_t *directory,

View File

@@ -1,3 +1,8 @@
2001-10-10 Joel Sherrill <joel@OARcorp.com>
* src/imfs/imfs_getchild.c: Correct length of static string
as reported by Ibragimov Ilya <ibr@oktet.ru>.
2001-09-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/imfs/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -22,7 +22,7 @@
#include "imfs.h"
static char dotname[2] = ".";
static char dotdotname[2] = "..";
static char dotdotname[3] = "..";
IMFS_jnode_t *IMFS_find_match_in_dir(
IMFS_jnode_t *directory,