Alex Henrie

Results 11 comments of Alex Henrie

Switching from `docker build` (which is actually `podman build` on my system) to `buildah bud --security-opt seccomp=unconfined` worked for me. I only figured this out because `strace` showed a call...

Two of the three calls to `json_fill_token` are immediately after `json_alloc_token`. The only place where `json_fill_token` is called later, and therefore behavior could change, is when `JSMN_STRICT` is defined and...

I can confirm the bug: It happens when `mod_remove_empty_return=true`. The first bad commit is 04f28db0d606ec8257a428f2fcc2f3af97229ade, "don't remove the return statement".

Interesting question. What are you trying to use `$HOME` for? Uncrustify's comment generation options are intentionally very basic; they're meant to generate comments, not code.

Ahh I see. Sorry for misunderstanding you at first.

Would `indent_bool_paren=-1` and `indent_paren_close=-1` work for you? (You'll need to clone the latest bleeding-edge version of Uncrustify from Git and compile it from source.)

I built and installed this image on my GL-AXT1800 today and everything looks great! Many thanks for your efforts. I hope we don't have to wait long for the new...

I am having the same problem. Here is a Dockerfile that reproduces it: ``` FROM ubuntu:mantic RUN apt-get update && apt-get install -y proot systemd RUN proot dpkg-reconfigure systemd ```...

This sounds like the same problem, posted way back in 2007: http://www.claassen.net/geek/blog/2007/06/isecurablechannel-in-tcpchannel-not.html

The [MSDN documentation for RegisterChannel](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.remoting.channels.channelservices.registerchannel?view=netframework-4.8) offers this explanation: > If the `ensureSecurity` parameter is set to `true`, the remoting system determines whether the channel implements [ISecurableChannel](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.remoting.channels.isecurablechannel?view=netframework-4.8), and if so, enables...