Index: luci/branches/luci-0.9/libs/nixio/src/fs.c
===================================================================
--- luci/branches/luci-0.9/libs/nixio/src/fs.c	(revision 4891)
+++ luci/branches/luci-0.9/libs/nixio/src/fs.c	(revision 5506)
@@ -258,12 +258,12 @@
 		return nixio__pstatus(L, !utimes(path, NULL));
 	} else {
-		double atime = luaL_checknumber(L, 2);
-		double mtime = luaL_optnumber(L, 3, atime);
+		double atime = luaL_checkinteger(L, 2);
+		double mtime = luaL_optinteger(L, 3, atime);
 		struct timeval times[2];
 
 		times[0].tv_sec = atime;
-		times[0].tv_usec = (long)((atime - (int64_t)atime) * 1000000);
+		times[0].tv_usec = 0;
 		times[1].tv_sec = mtime;
-		times[1].tv_usec = (long)((mtime - (int64_t)mtime) * 1000000);
+		times[1].tv_usec = 0;
 
 		return nixio__pstatus(L, !utimes(path, times));
@@ -318,5 +318,5 @@
 	lua_setfield(L, -2, "rdev");
 
-	lua_pushnumber(L, buf->st_size);
+	lua_pushinteger(L, buf->st_size);
 	lua_setfield(L, -2, "size");
 
@@ -470,35 +470,35 @@
 	lua_createtable(L, 0, 12);
 
-	lua_pushnumber(L, buf->f_bavail);
+	lua_pushinteger(L, buf->f_bavail);
 	lua_setfield(L, -2, "bavail");
 
-	lua_pushnumber(L, buf->f_bfree);
+	lua_pushinteger(L, buf->f_bfree);
 	lua_setfield(L, -2, "bfree");
 
-	lua_pushnumber(L, buf->f_blocks);
+	lua_pushinteger(L, buf->f_blocks);
 	lua_setfield(L, -2, "blocks");
 
-	lua_pushnumber(L, buf->f_bsize);
+	lua_pushinteger(L, buf->f_bsize);
 	lua_setfield(L, -2, "bsize");
 
-	lua_pushnumber(L, buf->f_frsize);
+	lua_pushinteger(L, buf->f_frsize);
 	lua_setfield(L, -2, "frsize");
 
-	lua_pushnumber(L, buf->f_favail);
+	lua_pushinteger(L, buf->f_favail);
 	lua_setfield(L, -2, "favail");
 
-	lua_pushnumber(L, buf->f_ffree);
+	lua_pushinteger(L, buf->f_ffree);
 	lua_setfield(L, -2, "ffree");
 
-	lua_pushnumber(L, buf->f_files);
+	lua_pushinteger(L, buf->f_files);
 	lua_setfield(L, -2, "files");
 
-	lua_pushnumber(L, buf->f_flag);
+	lua_pushinteger(L, buf->f_flag);
 	lua_setfield(L, -2, "flag");
 
-	lua_pushnumber(L, buf->f_fsid);
+	lua_pushinteger(L, buf->f_fsid);
 	lua_setfield(L, -2, "fsid");
 
-	lua_pushnumber(L, buf->f_namemax);
+	lua_pushinteger(L, buf->f_namemax);
 	lua_setfield(L, -2, "namemax");
 
