Enrico Scholz

Results 28 issues of Enrico Scholz

Commit adds SELinux support to dropbear by: - adding a new '--enable-selinux' option to configure; by default, it is disabled. This option defines an ENABLE_SELINUX preprocessor macro. - mapping the...

actix-server runs https://github.com/actix/actix-net/blob/605ec251432786b169490aac60679388aa902d95/actix-server/src/socket.rs#L74-L84 This `deregister` function can be called as part of flow control as response to `Pause` command https://github.com/actix/actix-net/blob/605ec251432786b169490aac60679388aa902d95/actix-server/src/accept.rs#L286-L292 When resuming operations, the socket file is gone and clients...

bug

Examples in the documentation suggest that `//` can be used for comments. E.g. the [CNI spec](https://github.com/containernetworking/cni/blob/master/SPEC.md#example-configurations) contains an example like ``` { "cniVersion": "0.4.0", "name": "dbnet", "type": "bridge", // type...

With ```elisp (use-package some-lib :defer 1 :hook ((other-mode . 'some-lib/conf-fn))) (message "hook: %s" other-mode-hook) ``` I got with use-package-20210207.1926 ``` "hook: (some-lib)" ```` But now with use-package-20220910.25, it is ```...

I have a rootless podman container which downloads files from the host over http. Forwarding data in the container seems to stall for 5 seconds. This seems to be caused...

bug
libslirp

In ```rust mod submod { mod lib { pub fn foo() {} } pub mod app { use crate::submod::lib as crate_lib; // broken use super::lib as mod_lib; // ok pub...

In ```rust pub mod lib { pub struct Foo; impl Foo { pub fn some_func() {} } } pub mod app { impl crate::lib::Foo { pub fn other_func() {} }...

racer fails to lookup symbols which are made available by `std::include!()`. E.g. #### `main.rs` ```rust std::include!("common.inc-rs"); fn main() { crate::bar::foo() // ^ } ``` #### `common.inc-rs` ```rust mod bar; ```...

Build of `rust-native` fails with ``` error: empty search path given via `-L` ``` Happens probably only on systems without a static `libstdc++.a` on the host system [Recent OE](https://github.com/openembedded/openembedded-core/blob/09c5499f5885662a55a8810078e7208a1696b29f/meta/recipes-devtools/rust/rust_1.69.0.bb#L124-L125) has...

Atm, rrd uses non-blocking locking https://github.com/oetiker/rrdtool-1.x/blob/b7d2007791b50d1c5c2d6af1ecd789182fcc102a/src/rrd_open.c#L804 This causes problems when data gathering and processing are done in separate processes. E.g. when - `rrdupdate foo.rrd ...` - `rrdtool graph foo.rrd ...`...