diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-23 01:33:44 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-23 01:33:44 +0100 |
commit | e2d56ea817dcdf97061cbaf9d56fd5c0300eef6c (patch) | |
tree | 875d069757dcfecda806e9a8bc0fc89623a1bf7f /icespider/fcgi/main.cpp | |
parent | Adds basic install rules (diff) | |
download | icespider-e2d56ea817dcdf97061cbaf9d56fd5c0300eef6c.tar.bz2 icespider-e2d56ea817dcdf97061cbaf9d56fd5c0300eef6c.tar.xz icespider-e2d56ea817dcdf97061cbaf9d56fd5c0300eef6c.zip |
Pass command line args through to Ice
Diffstat (limited to 'icespider/fcgi/main.cpp')
-rw-r--r-- | icespider/fcgi/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icespider/fcgi/main.cpp b/icespider/fcgi/main.cpp index 1d2e68c..7245ef9 100644 --- a/icespider/fcgi/main.cpp +++ b/icespider/fcgi/main.cpp @@ -8,7 +8,7 @@ DLL_PUBLIC int main(int argc, char ** argv, char ** env) { - IceSpider::Core core; + IceSpider::Core core(argc, argv); if (!FCGX_IsCGI()) { FCGX_Request request; |