26 lines
784 B
Diff
26 lines
784 B
Diff
|
|
From 859bba9dd82ea6fb101ae9686c98a811e3bf98b3 Mon Sep 17 00:00:00 2001
|
||
|
|
From: gulining <gulining1@huawei.com>
|
||
|
|
Date: Fri, 5 Jul 2019 16:19:32 +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 53d28c7..48897c3 100755
|
||
|
|
--- a/policycoreutils-2.8/scripts/fixfiles
|
||
|
|
+++ b/policycoreutils-2.8/scripts/fixfiles
|
||
|
|
@@ -148,7 +148,7 @@ done
|
||
|
|
# Find files newer then the passed in date and fix the label
|
||
|
|
#
|
||
|
|
newer() {
|
||
|
|
- DATE=$1
|
||
|
|
+ DATE="$1 $2"
|
||
|
|
shift
|
||
|
|
LogReadOnly
|
||
|
|
for m in `echo $FILESYSTEMSRW`; do
|