26 lines
912 B
Diff
26 lines
912 B
Diff
|
|
From bb3c1505cffc35e1ea310605f0bb9266d52b36b0 Mon Sep 17 00:00:00 2001
|
||
|
|
From: gulining <gulining1@huawei.com>
|
||
|
|
Date: Mon, 8 Jul 2019 11:50:39 +0800
|
||
|
|
Subject: [PATCH] fix fixfiles -N date function
|
||
|
|
|
||
|
|
reason: fix fixfiles -N date function
|
||
|
|
|
||
|
|
Signed-off-by: gulining <gulining1@huawei.com>
|
||
|
|
---
|
||
|
|
policycoreutils-2.8/scripts/fixfiles | 2 +-
|
||
|
|
1 file changed, 1 insertions(+), 1 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/policycoreutils-2.8/scripts/fixfiles b/policycoreutils-2.8/scripts/fixfiles
|
||
|
|
index 48897c3..be51913 100755
|
||
|
|
--- a/policycoreutils-2.8/scripts/fixfiles
|
||
|
|
+++ b/policycoreutils-2.8/scripts/fixfiles
|
||
|
|
@@ -152,7 +152,7 @@ newer() {
|
||
|
|
shift
|
||
|
|
LogReadOnly
|
||
|
|
for m in `echo $FILESYSTEMSRW`; do
|
||
|
|
- find $m -mount -newermt $DATE -print0 2>/dev/null | ${RESTORECON} ${FORCEFLAG} ${VERBOSE} $* -i -0 -f -
|
||
|
|
+ find $m -mount -newermt "$DATE" -print0 2>/dev/null | ${RESTORECON} ${FORCEFLAG} ${VERBOSE} $* -i -0 -f -
|
||
|
|
done;
|
||
|
|
}
|
||
|
|
|