summaryrefslogtreecommitdiff
path: root/src/anytun.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2010-01-12 21:58:24 +0000
committerChristian Pointner <equinox@anytun.org>2010-01-12 21:58:24 +0000
commit7fc4efc7a0216aeb68b0639fb3f4d839b359e250 (patch)
tree8aea8365eb15feb6f33d80b1545c6db950d61c75 /src/anytun.cpp
parentimproved new SysExec cleanup (diff)
references are better than pointer ;)
Diffstat (limited to 'src/anytun.cpp')
-rw-r--r--src/anytun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/anytun.cpp b/src/anytun.cpp
index 50aa255..0268ff1 100644
--- a/src/anytun.cpp
+++ b/src/anytun.cpp
@@ -432,7 +432,7 @@ int main(int argc, char* argv[])
#ifndef NO_EXEC
boost::thread(boost::bind(&TunDevice::waitUntilReady,&dev));
if (postup_script)
- boost::thread(boost::bind(&SysExec::waitAndDestroy,&postup_script));
+ boost::thread(boost::bind(&SysExec::waitAndDestroy,postup_script));
#endif
initCrypto();