diff options
author | Kozlov Dmitry <dima@server> | 2009-12-02 18:45:10 +0300 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2009-12-02 18:45:10 +0300 |
commit | 9db6020c32d86c330b470158805a2918d8d747dd (patch) | |
tree | 2407879b4dce8fe433369f042c2f16f9b02f00c4 /pptpd-1.3.3 | |
parent | 5c91194a6c22d8d7ad74c371fca8be2bc74d6d50 (diff) | |
download | accel-ppp-9db6020c32d86c330b470158805a2918d8d747dd.tar.gz accel-ppp-9db6020c32d86c330b470158805a2918d8d747dd.zip |
using per-cpu threads for packet receiveing/transmiting
Diffstat (limited to 'pptpd-1.3.3')
-rwxr-xr-x | pptpd-1.3.3/configure | 2 | ||||
-rw-r--r-- | pptpd-1.3.3/configure.in | 2 | ||||
-rw-r--r-- | pptpd-1.3.3/pptpd.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pptpd-1.3.3/configure b/pptpd-1.3.3/configure index c8c463eb..61a0f041 100755 --- a/pptpd-1.3.3/configure +++ b/pptpd-1.3.3/configure @@ -2043,7 +2043,7 @@ fi # Define the identity of the package. PACKAGE=pptpd - VERSION=0.8.4 + VERSION=0.8.5-rc1 cat >>confdefs.h <<_ACEOF diff --git a/pptpd-1.3.3/configure.in b/pptpd-1.3.3/configure.in index 185963b4..db8f1069 100644 --- a/pptpd-1.3.3/configure.in +++ b/pptpd-1.3.3/configure.in @@ -1,7 +1,7 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(pptpd,0.8.4) +AM_INIT_AUTOMAKE(pptpd,0.8.5-rc1) AC_DEFINE(BCRELAY,[],"Enable Broadcast Relay") AC_DEFINE(PPPD_VERSION,[],"PPPD version") diff --git a/pptpd-1.3.3/pptpd.c b/pptpd-1.3.3/pptpd.c index b6d2b6a4..69426ef9 100644 --- a/pptpd-1.3.3/pptpd.c +++ b/pptpd-1.3.3/pptpd.c @@ -152,7 +152,7 @@ int main(int argc, char **argv) /* open a connection to the syslog daemon */ openlog("pptpd", LOG_PID, PPTP_FACILITY); - syslog(LOG_ERR, "MGR: Config file not found!"); + //syslog(LOG_ERR, "MGR: Config file not found!"); /* process command line options */ while (1) { |