|
From: <ssm...@us...> - 2008-08-05 13:06:45
|
Revision: 2941
http://selinux.svn.sourceforge.net/selinux/?rev=2941&view=rev
Author: ssmalley
Date: 2008-08-05 13:06:40 +0000 (Tue, 05 Aug 2008)
Log Message:
-----------
Author: Russell Coker
Email: ru...@co...
Subject: setfiles patch
Date: Fri, 1 Aug 2008 11:12:37 +1000
Currently "setfiles -p" doesn't print a new-line at the end, this is annoying
as the output of the next command ends up starting halfway accross the
screen. Here is a patch.
Modified Paths:
--------------
trunk/policycoreutils/setfiles/setfiles.c
Modified: trunk/policycoreutils/setfiles/setfiles.c
===================================================================
--- trunk/policycoreutils/setfiles/setfiles.c 2008-08-05 13:06:08 UTC (rev 2940)
+++ trunk/policycoreutils/setfiles/setfiles.c 2008-08-05 13:06:40 UTC (rev 2941)
@@ -1017,5 +1017,7 @@
free(excludeArray[i].directory);
}
+ if (progress)
+ printf("\n");
exit(errors);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|