diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2005-09-06 08:38:32 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2005-09-06 08:38:32 +0000 |
commit | 0ccc29e81c5ca92dece3cbca352e8f4460e7378c (patch) | |
tree | 3e43451d78c5e9757e7e213eca37356b048ec27d /misc/estic/files/patch-filesys.cc | |
parent | Update to 2.96 (diff) |
- rename and merge patches
(for better CVS tracking of next updates)
Diffstat (limited to 'misc/estic/files/patch-filesys.cc')
-rw-r--r-- | misc/estic/files/patch-filesys.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/misc/estic/files/patch-filesys.cc b/misc/estic/files/patch-filesys.cc new file mode 100644 index 000000000000..a131bd552eb1 --- /dev/null +++ b/misc/estic/files/patch-filesys.cc @@ -0,0 +1,17 @@ +--- spunk/unixsrc/filesys.cc.orig Sat Feb 26 17:57:13 2000 ++++ spunk/unixsrc/filesys.cc Sat Feb 26 17:57:39 2000 +@@ -42,10 +42,10 @@ + + extern const char FileSysPathSep = '/'; // Path separator + extern const char FileSysListSep = ':'; // Path list separator +-extern const FileSysMaxPath = 255; // Maximum path length +-extern const FileSysMaxDir = 255; // Maximum directory length +-extern const FileSysMaxName = 255; // Maximum file name length +-extern const FileSysMaxExt = 255; // Maximum extension length (including the dot) ++extern const int FileSysMaxPath = 255; // Maximum path length ++extern const int FileSysMaxDir = 255; // Maximum directory length ++extern const int FileSysMaxName = 255; // Maximum file name length ++extern const int FileSysMaxExt = 255; // Maximum extension length (including the dot) + + + |