Security fix

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@65 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Mark Janssen 2004-11-02 16:04:57 +00:00
parent 7ae8c76584
commit 154805ffc3
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define VERSION "1.2.2"
#define VERSION "1.2.3"
#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>"

View file

@ -37,7 +37,7 @@ void message( char *s, ... )
va_end( ap );
if ( i_am_daemon )
syslog( LOG_NOTICE, buf );
syslog( LOG_NOTICE, "%s", buf );
else
fputs( buf, stderr );
}