summaryrefslogtreecommitdiff
path: root/source/lib
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2009-01-29 20:56:51 +0100
committerKarolin Seeger <kseeger@samba.org>2009-02-16 09:56:50 +0100
commit8f44bfb56476d24d5af7a4ddfc51d5472f3ceab9 (patch)
treed5138a368c61cb6de195e880600b0916d5ec5b2f /source/lib
parentc3e56cde3415d9060b483584adf4181a1226382e (diff)
downloadsamba-8f44bfb56476d24d5af7a4ddfc51d5472f3ceab9.tar.gz
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 (cherry picked from commit ee90448a7aa0a0972e5801b319a011fd52750c20)
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/time.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/lib/time.c b/source/lib/time.c
index dc7880a4482..8088110e176 100644
--- a/source/lib/time.c
+++ b/source/lib/time.c
@@ -926,10 +926,10 @@ void set_atimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_atim = ts;
#elif defined(HAVE_STAT_ST_ATIMENSEC)
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)
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)
pst->st_atimespec = ts;
#else
@@ -978,10 +978,10 @@ void set_mtimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_mtim = ts;
#elif defined(HAVE_STAT_ST_MTIMENSEC)
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)
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)
pst->st_mtimespec = ts;
#else
@@ -1030,10 +1030,10 @@ void set_ctimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
pst->st_ctim = ts;
#elif defined(HAVE_STAT_ST_CTIMENSEC)
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)
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)
pst->st_ctimespec = ts;
#else