diff options
author | Björn Jacke <bj@sernet.de> | 2009-01-29 00:20:00 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-01-29 09:51:35 -0800 |
commit | f9926a4944171759cdd129ae07962765d658f711 (patch) | |
tree | 04b54241b24ddac858a3a00a94b418cf2a3c2ae7 | |
parent | bc84bd7b718e5cf46cbdc49557d2d18d544a2626 (diff) | |
download | samba-f9926a4944171759cdd129ae07962765d658f711.tar.gz samba-f9926a4944171759cdd129ae07962765d658f711.tar.xz samba-f9926a4944171759cdd129ae07962765d658f711.zip |
rather cosmetic fix for failed birthtime configure checks
-rw-r--r-- | source3/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0de44f384fb..4ce9207a9e4 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1457,7 +1457,7 @@ AC_CACHE_CHECK([whether struct stat has st_birthtimespec], samba_cv_stat_st_birt struct stat s = {0}; t = s.st_birthtimespec; ], - samba_cv_stat_st_birthtimespec=yes, samba_cv_stat_birthtimespec=no) + samba_cv_stat_st_birthtimespec=yes, samba_cv_stat_st_birthtimespec=no) ]) if test x"$samba_cv_stat_st_birthtimespec" = x"yes" ; then @@ -1487,7 +1487,7 @@ AC_CACHE_CHECK([whether struct stat has st_birthtimensec], samba_cv_stat_st_birt struct stat s = {0}; t.tv_nsec = s.st_birthtimensec; ], - samba_cv_stat_st_birthtimensec=yes, samba_cv_stat_birthtimensec=no) + samba_cv_stat_st_birthtimensec=yes, samba_cv_stat_st_birthtimensec=no) ]) if test x"$samba_cv_stat_st_birthtimensec" = x"yes" ; then @@ -1517,7 +1517,7 @@ AC_CACHE_CHECK([whether struct stat has st_birthtime], samba_cv_stat_st_birthtim struct stat s = {0}; t = s.st_birthtime; ], - samba_cv_stat_st_birthtime=yes, samba_cv_stat_birthtime=no) + samba_cv_stat_st_birthtime=yes, samba_cv_stat_st_birthtime=no) ]) if test x"$samba_cv_stat_st_birthtime" = x"yes" ; then |