mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
Bump version to 1.7.2
git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@161 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
parent
aa48fb6858
commit
96a1075ab5
3 changed files with 9 additions and 1 deletions
6
CHANGES
6
CHANGES
|
|
@ -1,3 +1,9 @@
|
|||
Changes to proxytunnel version 1.7.2 -- Mon Jul 30 10:18:26 CEST 2007
|
||||
|
||||
- Fixed buffer/malloc issue
|
||||
- Clean-up usage info/help text
|
||||
- Remove spurious syslog
|
||||
|
||||
Changes to proxytunnel version 1.7.1 -- Thu Apr 12 13:40:27 CEST 2007
|
||||
|
||||
- Cygwin SO_REUSEPORT stuff by Marc Heuse
|
||||
|
|
|
|||
2
config.h
2
config.h
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define VERSION "1.7.1"
|
||||
#define VERSION "1.7.2"
|
||||
#define PACKAGE "Proxytunnel"
|
||||
#define PURPOSE "Build generic tunnels through HTTPS proxies"
|
||||
#define AUTHORS "Jos Visser (Muppet) <josv@osp.nl>, Mark Janssen (Maniac) <maniac@maniac.nl>"
|
||||
|
|
|
|||
|
|
@ -224,6 +224,7 @@ void do_daemon()
|
|||
* -- Maniac
|
||||
*/
|
||||
#ifndef CYGWIN
|
||||
/*
|
||||
if ( ( pid = fork( ) ) < 0 )
|
||||
{
|
||||
my_perror( "Cannot fork into the background" );
|
||||
|
|
@ -234,6 +235,7 @@ void do_daemon()
|
|||
message( "Forked into the background with pid %d\n", pid );
|
||||
exit(0);
|
||||
}
|
||||
*/
|
||||
|
||||
openlog( program_name, LOG_CONS|LOG_PID,LOG_DAEMON );
|
||||
i_am_daemon = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue