=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/snmp/snmpc.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- src/usr.bin/snmp/snmpc.c 2020/01/17 10:03:39 1.19 +++ src/usr.bin/snmp/snmpc.c 2020/01/17 10:10:32 1.20 @@ -1,4 +1,4 @@ -/* $OpenBSD: snmpc.c,v 1.19 2020/01/17 10:03:39 martijn Exp $ */ +/* $OpenBSD: snmpc.c,v 1.20 2020/01/17 10:10:32 martijn Exp $ */ /* * Copyright (c) 2019 Martijn van Duren @@ -71,12 +71,12 @@ struct snmp_app snmp_apps[] = { { "get", 1, NULL, "agent oid ...", snmpc_get }, { "getnext", 1, NULL, "agent oid ...", snmpc_get }, - { "walk", 1, "C:", "[-C cIipt] [-C E endoid] agent [oid]", snmpc_walk }, + { "walk", 1, "C:", "[-C cIipt] [-C E endoid] [-C s skipoid] agent [oid]", snmpc_walk }, { "bulkget", 1, "C:", "[-C nr] agent oid ...", snmpc_get }, - { "bulkwalk", 1, "C:", "[-C cipnr] agent [oid]", snmpc_walk }, + { "bulkwalk", 1, "C:", "[-C cipnr] [-C s skipoid] agent [oid]", snmpc_walk }, { "set", 1, NULL, "agent oid type value [oid type value] ...", snmpc_set }, { "trap", 1, NULL, "agent uptime oid [oid type value] ...", snmpc_trap }, - { "df", 1, "C:", "[-Ch] agent", snmpc_df }, + { "df", 1, "C:", "[-Ch] [-Cr] agent", snmpc_df }, { "mibtree", 0, "O:", "[-O fnS]", snmpc_mibtree } }; struct snmp_app *snmp_app = NULL;