Vincent CARPENTIER
Vincent CARPENTIER
I also got such messages, I found out that it was not working for `walker` and proposed some fixes : #169 Now it's working even if I still have those...
I mean, I had to fix the argument for walker, the code was using a `-f` argument that does not exit so walker was stopping. But the walker error message...
Added fix for the passphrase: - removing "-n" to get the search / input field. - adding "-I" for getting the input
I want to investigate more about dbus-event but meanwhile I made a PR with a proposed fix to prevent sending wrongly parsed input with leading zero(s) such as `050`
So after digging, dbus is using `strtoul` to parse at [https://gitlab.freedesktop.org/dbus/dbus/-/blob/main/tools/dbus-send.c](https://gitlab.freedesktop.org/dbus/dbus/-/blob/main/tools/dbus-send.c) line 105 According to [https://en.cppreference.com/w/c/string/byte/strtoul.html](https://en.cppreference.com/w/c/string/byte/strtoul.html), "prefix (0) indicating octal base (applies only when the base is 8 or 0)...