diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-04-17 15:01:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-04-17 15:01:27 +0000 |
commit | 2d0e78e3606e89f11c563e064f0134cdf10d015c (patch) | |
tree | 294f251259d803799c8aff3ad741c95440799baa /usr.bin/file/file.h | |
parent | 7f71ec3a75cfd4669d2ca0191b19ea88830012e8 (diff) |
variety of fixes to correct large time_t code. it is quite broken upstream.
ok chl
Diffstat (limited to 'usr.bin/file/file.h')
-rw-r--r-- | usr.bin/file/file.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/file/file.h b/usr.bin/file/file.h index dd191bad58e..40d296ba62d 100644 --- a/usr.bin/file/file.h +++ b/usr.bin/file/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.22 2009/10/27 23:59:37 deraadt Exp $ */ +/* $OpenBSD: file.h,v 1.23 2013/04/17 15:01:26 deraadt Exp $ */ /* * Copyright (c) Ian F. Darwin 1986-1995. * Software written by Ian F. Darwin and others; @@ -28,7 +28,7 @@ */ /* * file.h - definitions for file(1) program - * @(#)$Id: file.h,v 1.22 2009/10/27 23:59:37 deraadt Exp $ + * @(#)$Id: file.h,v 1.23 2013/04/17 15:01:26 deraadt Exp $ */ #ifndef __file_h__ @@ -319,7 +319,7 @@ struct magic_set { typedef unsigned long unichar; struct stat; -protected const char *file_fmttime(uint32_t, int); +protected const char *file_fmttime(uint64_t, int); protected int file_buffer(struct magic_set *, int, const char *, const void *, size_t); protected int file_fsmagic(struct magic_set *, const char *, struct stat *); |