diff options
author | Jeremy Allison <jra@samba.org> | 2005-08-23 19:04:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:01:12 -0500 |
commit | 85a2d32e3173c5820e82410273ae645826f2fb3e (patch) | |
tree | a13ae6ae185dec28c7f0d37379e47fa5b0786e65 /source3 | |
parent | 78257e343305b426c5853c4dcbfa3d63dd5f720d (diff) | |
download | samba-85a2d32e3173c5820e82410273ae645826f2fb3e.tar.gz samba-85a2d32e3173c5820e82410273ae645826f2fb3e.tar.bz2 samba-85a2d32e3173c5820e82410273ae645826f2fb3e.zip |
r9534: Fix typo spotted by William Jojo <jojowil@hvcc.edu> - define
HAVE_STRUCT_DIR64 not HAVE_STRUCT_DIRENT64.
Jeremy
(This used to be commit 9131acc3f0ab342dc4afd89221b440ca3a87d2c2)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 51fe556c43..e9454ab5e0 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1635,8 +1635,8 @@ AC_TRY_COMPILE([ #include <dirent.h>], [DIR64 de;], samba_cv_HAVE_STRUCT_DIR64=yes,samba_cv_HAVE_STRUCT_DIR64=no)]) -if test x"$samba_cv_HAVE_STRUCT_DIRENT64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then - AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Whether the 'DIR64' abstract data type is available]) +if test x"$samba_cv_HAVE_STRUCT_DIR64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then + AC_DEFINE(HAVE_STRUCT_DIR64,1,[Whether the 'DIR64' abstract data type is available]) fi AC_CACHE_CHECK([for struct dirent64],samba_cv_HAVE_STRUCT_DIRENT64,[ |