From 722121e2f17618c6a226036a9c0d166b8344e644 Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Tue, 26 Mar 2002 04:55:06 +0000 Subject: handle ignore case. --- share/shadow.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'share/shadow.py') diff --git a/share/shadow.py b/share/shadow.py index f7ec12f..e5365d7 100755 --- a/share/shadow.py +++ b/share/shadow.py @@ -37,6 +37,7 @@ LOCAL=2 yes=1 no=0 +ignore=-1 FAKE = {} @@ -49,7 +50,8 @@ def indirect(name, func, type, args): def commit_changes(): for f in FAKE.values(): - apply(f[0], f[1]) + if len(f[1]) >= 1 and f[1][0] != -1: + apply(f[0], f[1]) """ -- cgit v1.2.1