diff --git a/README.html b/README.html index fdc21a3..d4c21d7 100644 --- a/README.html +++ b/README.html @@ -5,7 +5,7 @@ pre.code { border: 1px solid blue } pre.shell { border: 1px dashed green } -To clone this repository, issue the following command: +To clone this repository, issue the following command:
  $ git-clone git://stbuehler.de/spawn-fcgi.git
 
diff --git a/spawn-fcgi.c b/spawn-fcgi.c index 844b0a7..c7772a9 100644 --- a/spawn-fcgi.c +++ b/spawn-fcgi.c @@ -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, diff --git a/wscript b/wscript index 2ca50b0..0241dbd 100644 --- a/wscript +++ b/wscript @@ -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