Remove some trailing whitespaces

This commit is contained in:
Stefan Bühler 2008-07-21 19:14:31 +02:00
parent 932809088d
commit 089ff81dd0
3 changed files with 4 additions and 5 deletions

View File

@ -5,7 +5,7 @@ pre.code { border: 1px solid blue }
pre.shell { border: 1px dashed green }
</style>
To clone this repository, issue the following command:
To clone this repository, issue the following command:
<pre class="shell">
$ git-clone <a href="git://stbuehler.de/spawn-fcgi.git">git://stbuehler.de/spawn-fcgi.git</a>
</pre>

View File

@ -85,7 +85,7 @@ typedef struct {
#ifdef USE_LIMITS
gboolean use_limits;
#endif
gchar *chroot;
gchar *uid, *gid;
gchar *socketuid, *socketgid;
@ -120,7 +120,7 @@ static options opts = {
#ifdef USE_LIMITS
FALSE,
#endif
NULL,
NULL, NULL,
NULL, NULL,

View File

@ -15,7 +15,6 @@ blddir = 'build'
def set_options(opt):
opt.tool_options('compiler_cc')
opt.add_option('--without-limits', action='store_false', help='without /etc/security/limits.conf support', dest = 'limits', default = True)
def tolist(x):
if type(x) is types.ListType:
@ -70,7 +69,7 @@ limits_source = '''
def build(bld):
env = bld.env
spawnfcgi = bld.new_task_gen('cc', 'program')
spawnfcgi.name = 'spawn-fcgi'
spawnfcgi.source = main_source