fredizzimo

Results 1393 comments of fredizzimo

I'm not sure what the problem is, but it's possible that we need 8-bit icons as well: https://learn.microsoft.com/en-gb/windows/win32/uxguide/vis-icons?redirectedfrom=MSDN It's at least strongly recommended there, and the default Visual Studio icons...

I think we are also setting the window icon correctly, It's done here https://github.com/neovide/neovide/blob/13077db88e7f464d6841f6bb121d60c013ada55b/src/window/mod.rs#L157 Which ends up calling https://github.com/rust-windowing/winit/blob/563b0bf5e38e8d2785bd7da3db8b0a83c4b1821d/src/platform_impl/windows/icon.rs#L138 But, I noticed there's also `with_taskbar_icon` https://docs.rs/winit/latest/x86_64-pc-windows-msvc/winit/platform/windows/trait.WindowBuilderExtWindows.html#tymethod.with_taskbar_icon Which sets the large...

Yes, it definitely looks like some example ``` ❯ cat /etc/krb5.conf [libdefaults] default_realm = ATHENA.MIT.EDU [realms] # use "kdc = ..." if realm admins haven't put SRV records into DNS...

Ok, I will try that out now, and come back to you with the results.

Unfortunately, it did not help, not even after restarting the system. But I see the following in the journal log now ``` apr 24 17:15:40 fredarch krb5kdc[5592]: Configuration file does...

Ah, I just double checked, all of the activation of that was by myself through `systemctl restart`, not by the system. 1. I did it before rebooting in the hope...

No, my response was just about the `krb5-kdc.service`. So the original problem remains. I understand that it's hard to know what the problem is with this little information, so I...

I don't have the symbols for the system libraries at the moment, but this is the callstack ``` libc.so.6!connect (Unknown Source:0) libc.so.6![Unknown/Just-In-Time compiled code] (Unknown Source:0) libc.so.6!__res_context_send (Unknown Source:0) libc.so.6!__res_context_query...

I bisected it down to this commit https://github.com/FreeRDP/FreeRDP/commit/c9e61ff0c59e80898d0999781d1e250e014eab8d (cmake] simplify krb5 detection) NOTE: I had to do the bisecting with a clean build directory each time, if I just tried...

Ah, now I see, before that commit it defaulted to `OFF`, and now it defaults to `ON`. And indeed if I set `-DWITH_KRB5=OFF` it works on master. And it also...