Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-12-05 18:10:20 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-12-05 18:10:20 +0300
commit5224a7bbf34a50c03d630dd02bfd636ff88583c0 (patch)
tree65a62de501eef144361a4fe5bc23f9c1b6bf2658 /winsup/cygwin/winf.h
parent8c7c7178c7ca377ff09c3226320b0f8985814bd4 (diff)
* fhandler_registry.cc: Use NAME_MAX + 1 instead of CYG_MAX_PATH
throughout for subkey name buffer size. * fhandler_socket.cc (search_wsa_event_slot): Use MAX_PATH instead of CYG_MAX_PATH for mutext name buffer size. (fhandler_socket::init_events): Ditto. * fhandler_virtual.cc (fhandler_virtual::opendir): Check path length against PATH_MAX instead of against CYG_MAX_PATH. * registry.cc (get_registry_hive_path): Use PATH_MAX instead of CYG_MAX_PATH for registry value path buffer size. * shared.cc (open_shared): Use MAX_PATH instead of CYG_MAX_PATH for shared memory name buffer size. * thread.cc (semaphore::semaphore): Use MAX_PATH instead of CYG_MAX_PATH for semaphore name buffer size. * uinfo.cc (cygheap_user::env_userprofile): Use PATH_MAX instead of CYG_MAX_PATH for temporary path name buffer size. * winf.h (LINE_BUF_CHUNK): Define as MAX_PATH * 2. * include/sys/dirent.h: Include sys/limits.h. Define name buffer sizes using NAME_MAX.
Diffstat (limited to 'winsup/cygwin/winf.h')
-rw-r--r--winsup/cygwin/winf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winf.h b/winsup/cygwin/winf.h
index 079ef3045..8fb6470c8 100644
--- a/winsup/cygwin/winf.h
+++ b/winsup/cygwin/winf.h
@@ -18,7 +18,7 @@ details. */
#define MAXCYGWINCMDLEN 30000
#define MAXWINCMDLEN 32767
-#define LINE_BUF_CHUNK (CYG_MAX_PATH * 2)
+#define LINE_BUF_CHUNK (MAX_PATH * 2)
class av
{