FreeBSD Bugzilla – Attachment 192351 Details for
Bug 225559
net/krdc: "xfreerdp" parameter "/network:[...]" not supported anymore in FreeRDP 2.0.0r1?
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch (to add to files/)
patch-client_common_cmdline.c (text/plain), 539 bytes, created by
Adriaan de Groot
on 2018-04-08 20:52:54 UTC
(
hide
)
Description:
Patch (to add to files/)
Filename:
MIME Type:
Creator:
Adriaan de Groot
Created:
2018-04-08 20:52:54 UTC
Size:
539 bytes
patch
obsolete
>strtol() will set errno to EINVAL when passed invalid input (e.g. "lan"). >With Linux, GNU GlibC sets errno to 0 (and returns 0). Adjust the FreeRDP >code to deal with that. > >errno to 0 when strtol( >--- client/common/cmdline.c.orig 2018-04-08 20:38:28 UTC >+++ client/common/cmdline.c >@@ -2217,7 +2217,7 @@ int freerdp_client_settings_parse_comman > char* pEnd; > type = strtol(arg->Value, &pEnd, 10); > >- if (errno != 0) >+ if ((errno != 0) && (errno != EINVAL)) > return COMMAND_LINE_ERROR_UNEXPECTED_VALUE; > > if (type == 0)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 225559
:
192351
|
192358
|
192835
|
192843
|
193015
Working