4865884f55
Fix the format string and types to work on older versions of NetBSD, in addition to FreeBSD and SunOS.
24 lines
713 B
Text
24 lines
713 B
Text
$NetBSD: patch-ak,v 1.2 2003/12/09 19:17:37 ben Exp $
|
|
|
|
--- src/preen.report.c.orig 1994-08-03 20:44:34.000000000 -0700
|
|
+++ src/preen.report.c
|
|
@@ -452,7 +452,8 @@ preen_change_count()
|
|
char *s;
|
|
int ignoremask;
|
|
char ignorevec[512];
|
|
- uint32 mode, ino, nlink, uid, gid, size;
|
|
+ uint32 mode, ino, nlink, uid, gid;
|
|
+ long long size;
|
|
int entrynum;
|
|
int nfields;
|
|
|
|
@@ -633,7 +634,8 @@ structstat_fill (string, statbuf, sigs,
|
|
{
|
|
char *ignorevec;
|
|
static char structstat_fill_string[512];
|
|
- uint32 mode, ino, nlink, uid, gid, size;
|
|
+ uint32 mode, ino, nlink, uid, gid;
|
|
+ long long size;
|
|
int entrynum;
|
|
char vec64_a[50], vec64_m[50], vec64_c[50];
|
|
|