1
0
mirror of https://github.com/samba-team/samba.git synced 2025-09-03 05:49:28 +03:00

add missing semicolons

the fixed configure check led to a missing semicolon in the now activated BSD
code. Then this error was even copypasted into the new AIX code. grrr
This commit is contained in:
Björn Jacke
2009-01-29 20:56:51 +01:00
committed by Jeremy Allison
parent 12f57f95b5
commit 29ab9ed933

View File

@@ -427,10 +427,10 @@ void set_atimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_atim = ts; pst->st_atim = ts;
#elif defined(HAVE_STAT_ST_ATIMENSEC) #elif defined(HAVE_STAT_ST_ATIMENSEC)
pst->st_atime = ts.tv_sec; pst->st_atime = ts.tv_sec;
pst->st_atimensec = ts.tv_nsec pst->st_atimensec = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_ATIME_N) #elif defined(HAVE_STAT_ST_ATIME_N)
pst->st_atime = ts.tv_sec; pst->st_atime = ts.tv_sec;
pst->st_atime_n = ts.tv_nsec pst->st_atime_n = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_ATIMESPEC) #elif defined(HAVE_STAT_ST_ATIMESPEC)
pst->st_atimespec = ts; pst->st_atimespec = ts;
#else #else
@@ -479,10 +479,10 @@ void set_mtimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_mtim = ts; pst->st_mtim = ts;
#elif defined(HAVE_STAT_ST_MTIMENSEC) #elif defined(HAVE_STAT_ST_MTIMENSEC)
pst->st_mtime = ts.tv_sec; pst->st_mtime = ts.tv_sec;
pst->st_mtimensec = ts.tv_nsec pst->st_mtimensec = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_MTIME_N) #elif defined(HAVE_STAT_ST_MTIME_N)
pst->st_mtime = ts.tv_sec; pst->st_mtime = ts.tv_sec;
pst->st_mtime_n = ts.tv_nsec pst->st_mtime_n = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_MTIMESPEC) #elif defined(HAVE_STAT_ST_MTIMESPEC)
pst->st_mtimespec = ts; pst->st_mtimespec = ts;
#else #else
@@ -531,10 +531,10 @@ void set_ctimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_ctim = ts; pst->st_ctim = ts;
#elif defined(HAVE_STAT_ST_CTIMENSEC) #elif defined(HAVE_STAT_ST_CTIMENSEC)
pst->st_ctime = ts.tv_sec; pst->st_ctime = ts.tv_sec;
pst->st_ctimensec = ts.tv_nsec pst->st_ctimensec = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_CTIME_N) #elif defined(HAVE_STAT_ST_CTIME_N)
pst->st_ctime = ts.tv_sec; pst->st_ctime = ts.tv_sec;
pst->st_ctime_n = ts.tv_nsec pst->st_ctime_n = ts.tv_nsec;
#elif defined(HAVE_STAT_ST_CTIMESPEC) #elif defined(HAVE_STAT_ST_CTIMESPEC)
pst->st_ctimespec = ts; pst->st_ctimespec = ts;
#else #else