summaryrefslogtreecommitdiffstats
path: root/src/lib9/dirwstat.c
blob: 6f35196509cdce3c576710e9565ad6f14121f426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
#include <sys/time.h>
#include <utime.h>

int
dirwstat(char *file, Dir *dir)
{
	struct utimbuf ub;

	/* BUG handle more */
	if(dir->mtime == ~0ULL)
		return 0;

	ub.actime = dir->mtime;
	ub.modtime = dir->mtime;
	return utime(file, &ub);
}