From fc92f872116bd0abe4d4844207d0570742e36d6c Mon Sep 17 00:00:00 2001 From: ewt Date: Tue, 7 May 1996 01:49:06 +0000 Subject: [PATCH] the norunScripts parameter to runScript() was implemented backwards :-( CVS patchset: 558 CVS date: 1996/05/07 01:49:06 --- lib/uninstall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uninstall.c b/lib/uninstall.c index 4c3559c..e2c4f82 100644 --- a/lib/uninstall.c +++ b/lib/uninstall.c @@ -280,7 +280,7 @@ int runScript(char * prefix, Header h, int tag, int norunScripts) { int child; int status; - if (!norunScripts) return 0; + if (norunScripts) return 0; if (getEntry(h, tag, &type, (void **) &script, &count)) { fn = tmpnam(NULL); -- 2.7.4