Date: Tue, 30 Jan 2018 12:12:23 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 225559] net/krdc: "xfreerdp" parameter "/network:[...]" not supported anymore in FreeRDP 2.0.0r1? Message-ID: <bug-225559-13@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225559 Bug ID: 225559 Summary: net/krdc: "xfreerdp" parameter "/network:[...]" not supported anymore in FreeRDP 2.0.0r1? Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: kde@FreeBSD.org Reporter: nbe@renzel.net Assignee: kde@FreeBSD.org Flags: maintainer-feedback?(kde@FreeBSD.org) After upgrading all packages, it seems that "krdc" is no longer able to spa= wn RDP sessions. Activating all debug flags using "kdebugdialog" reveals that "krdc" executes "xfreerdp" with following options: ---------------------------------------------------------------------------= ---- -decorations /w:1255 /h:879 /kbd:0x00000407 /u:SECRETUSER /parent-window:4194338 /bpp:16 /audio-mode:2 /drive:media,/media /network:l= an /cert-ignore +clipboard /port:3389 /v:SECRETSERVER ---------------------------------------------------------------------------= ---- Executing "xfreerdp" manually with above mentioned options line does not sp= awn a RDP session as well and show "xfreerdp" usage output instead. Removing an option one by one reveals that "xfreerdp" does not like the "/network" parameter anymore - at least with that options combination. Patching "krdc" to exclude that: ---------------------------------------------------------------------------= ---- --- rdpview.cpp.bak 2018-01-30 13:08:36.375470000 +0100 +++ rdpview.cpp 2018-01-30 12:53:57.551629000 +0100 @@ -310,7 +310,7 @@ break; } - arguments << "/network:" + performance; + // arguments << "/network:" + performance; // nbe: broken in FreeR= DP 2.0.0r1 if (m_hostPreferences->console()) { arguments << "/admin"; ---------------------------------------------------------------------------= ---- makes it working again... --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-225559-13>