Remove upstreamed patches: - 100-fix-setstacksize-for-glibc-2.34.patch Refresh patches: - 200-logdest-on-foreground.patch Changes: Misc: - OpenSSL 3.0 compatibility Bug Fixes: - Fix refused startup with openssl <1.1 - Fix compiler issue for Fedora 33 on s390x - Fix small memory leak in config parser - Fix lazy certificate check when connecting to TLS servers - Fix connect is aborted if first host in list has invalid certificate - Fix setstacksize for glibc 2.34 - Fix system defaults/settings for TLS version not honored Signed-off-by: Nick Hainke <vincent@systemli.org>
25 lines
1 KiB
Diff
25 lines
1 KiB
Diff
--- a/radsecproxy.c
|
|
+++ b/radsecproxy.c
|
|
@@ -3075,15 +3075,13 @@ int radsecproxy_main(int argc, char **ar
|
|
options.loglevel = loglevel;
|
|
else if (options.loglevel)
|
|
debug_set_level(options.loglevel);
|
|
- if (!foreground) {
|
|
- debug_set_destination(options.logdestination
|
|
- ? options.logdestination
|
|
- : "x-syslog:///", LOG_TYPE_DEBUG);
|
|
- if (options.ftickssyslogfacility) {
|
|
- debug_set_destination(options.ftickssyslogfacility,
|
|
- LOG_TYPE_FTICKS);
|
|
- free(options.ftickssyslogfacility);
|
|
- }
|
|
+ debug_set_destination(options.logdestination
|
|
+ ? options.logdestination
|
|
+ : "x-syslog:///", LOG_TYPE_DEBUG);
|
|
+ if (options.ftickssyslogfacility) {
|
|
+ debug_set_destination(options.ftickssyslogfacility,
|
|
+ LOG_TYPE_FTICKS);
|
|
+ free(options.ftickssyslogfacility);
|
|
}
|
|
free(options.logdestination);
|
|
if (options.logtid)
|