mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-03 18:18:00 +02:00
* dbus/dbus-sysdeps-util-unix.c (dirent_buf_size): Add check for
MAXNAMELEN for Mac OSX. (Patch from Jonas B <sanoix at gmail dot com>)
This commit is contained in:
parent
c6e066ff82
commit
254524928a
2 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-10-02 John (J5) Palmieir <johnp@redhat.com>
|
||||
|
||||
* dbus/dbus-sysdeps-util-unix.c (dirent_buf_size): Add check for
|
||||
MAXNAMELEN for Mac OSX. (Patch from Jonas B <sanoix at gmail dot com>)
|
||||
|
||||
2006-10-02 Thiago Macieira <thiago@kde.org>
|
||||
|
||||
* tools/dbus-launch.c (main): make it complain and abort
|
||||
|
|
|
|||
|
|
@ -516,6 +516,8 @@ dirent_buf_size(DIR * dirp, size_t *size)
|
|||
# else
|
||||
return FALSE;
|
||||
# endif
|
||||
# elif defined(MAXNAMELEN)
|
||||
name_max = MAXNAMELEN;
|
||||
# else
|
||||
# if defined(NAME_MAX)
|
||||
name_max = NAME_MAX;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue