diff --git a/RELEASE b/RELEASE index 0383441..9cf0386 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -0.9.5 \ No newline at end of file +0.9.6 \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index df811a8..1020ba0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +3proxy (0.9.6-1) buster; urgency=medium + + *3proxy 0.9.6 initial build + + -- z3APA3A <3apa3a@3proxy.org> Sat, 11 Apr 2026 13:03:32 +0300 + 3proxy (0.9.5-1) buster; urgency=medium *3proxy 0.9.5 initial build diff --git a/scripts/rh/3proxy.spec b/scripts/rh/3proxy.spec index d187e38..2262644 100644 --- a/scripts/rh/3proxy.spec +++ b/scripts/rh/3proxy.spec @@ -1,5 +1,5 @@ Name: 3proxy -Version: 0.9.5 +Version: 0.9.6 Release: 1%{?dist} Summary: 3proxy tiny proxy server License: GPL/LGPL/Apache/BSD diff --git a/src/conf.c b/src/conf.c index da0cf1c..a525136 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1845,7 +1845,6 @@ void freeconf(struct extparam *confp){ struct ace *acl; struct filemon *fm; int counterd, archiverc; - unsigned char *logname, *logtarget; unsigned char **archiver; unsigned char * logformat; @@ -1882,12 +1881,6 @@ void freeconf(struct extparam *confp){ pthread_mutex_unlock(&pwl_mutex); -/* - logtarget = confp->logtarget; - confp->logtarget = NULL; - logname = confp->logname; - confp->logname = NULL; -*/ confp->logfunc = lognone; logformat = confp->logformat; confp->logformat = NULL; @@ -1942,14 +1935,6 @@ void freeconf(struct extparam *confp){ for(; fm; fm = (struct filemon *)itfree(fm, fm->next)){ if(fm->path) myfree(fm->path); } -/* - if(logtarget) { - myfree(logtarget); - } - if(logname) { - myfree(logname); - } -*/ if(logformat) { myfree(logformat); } diff --git a/src/version.h b/src/version.h index 4d1334d..05a8bf9 100644 --- a/src/version.h +++ b/src/version.h @@ -1,14 +1,14 @@ #ifndef VERSION -#define VERSION "3proxy-0.9.5" +#define VERSION "3proxy-0.9.6" #endif #ifndef BUILDDATE #define BUILDDATE "" #endif #define MAJOR3PROXY 0 #define SUBMAJOR3PROXY 9 -#define MINOR3PROXY 5 +#define MINOR3PROXY 6 #define SUBMINOR3PROXY 0 -#define RELEASE3PROXY "3proxy-0.9.5(" BUILDDATE ")\0" +#define RELEASE3PROXY "3proxy-0.9.6(" BUILDDATE ")\0" #ifndef YEAR3PROXY #define YEAR3PROXY "2026" #endif