Don't require -d with -x or -y since it could be in the config file.

This commit is contained in:
Nicholas Marriott 2011-02-03 20:50:03 +00:00
parent 7462c03281
commit 8ec3e5725c

View File

@ -49,9 +49,6 @@ cmd_new_session_check(struct args *args)
{
if (args_has(args, 't') && (args->argc != 0 || args_has(args, 'n')))
return (-1);
if (!args_has(args, 'd') &&
(args_has(args, 'x') || args_has(args, 'y')))
return (-1);
return (0);
}