Sync OpenBSD patchset 837:

unbind-key -a is allowed no arguments.
pull/1/head
Tiago Cunha 2011-01-21 23:46:09 +00:00
parent 10a5a2175e
commit 6c3186a19a
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-unbind-key.c,v 1.24 2011-01-07 14:45:34 tcunha Exp $ */
/* $Id: cmd-unbind-key.c,v 1.25 2011-01-21 23:46:09 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -31,7 +31,7 @@ int cmd_unbind_key_table(struct cmd *, struct cmd_ctx *, int);
const struct cmd_entry cmd_unbind_key_entry = {
"unbind-key", "unbind",
"acnt:", 1, 1,
"acnt:", 0, 1,
"[-acn] [-t key-table] key",
0,
NULL,
@ -43,6 +43,8 @@ int
cmd_unbind_key_check(struct args *args)
{
if (args_has(args, 'a') && (args->argc != 0 || args_has(args, 't')))
return (-1);
if (!args_has(args, 'a') && args->argc != 1)
return (-1);
return (0);
}