d7f589801dce2b3c6856d564e39d48916b9928c8
[openwrt/staging/robimarko.git] / package / network / services / dropbear / patches / 130-ssh_ignore_x_args.patch
1 --- a/cli-runopts.c
2 +++ b/cli-runopts.c
3 @@ -325,6 +325,10 @@ void cli_getopts(int argc, char ** argv)
4 case 'b':
5 next = &bind_arg;
6 break;
7 + case 'x':
8 + /* compatibility with openssh cli
9 + * ("-x" disables X11 forwarding) */
10 + break;
11 default:
12 fprintf(stderr,
13 "WARNING: Ignoring unknown option -%c\n", c);