diff options
author | Martijn van Duren <martijn@cvs.openbsd.org> | 2020-01-25 17:17:32 +0000 |
---|---|---|
committer | Martijn van Duren <martijn@cvs.openbsd.org> | 2020-01-25 17:17:32 +0000 |
commit | ba85304ba9962ebbb310b3c4b4985b63ce35b3b6 (patch) | |
tree | 281f9489d46d69dcfcb1dabee46ded998a1bdad1 /usr.bin | |
parent | d4434ff7d8efa8411d99da1adfd7d74288023738 (diff) |
Remove a sleep call that I used for some testing that slipped in during
the import of the df subcommand.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/snmp/snmpc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/snmp/snmpc.c b/usr.bin/snmp/snmpc.c index 42dc0ead9d1..3b7f3832109 100644 --- a/usr.bin/snmp/snmpc.c +++ b/usr.bin/snmp/snmpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: snmpc.c,v 1.20 2020/01/17 10:10:32 martijn Exp $ */ +/* $OpenBSD: snmpc.c,v 1.21 2020/01/25 17:17:31 martijn Exp $ */ /* * Copyright (c) 2019 Martijn van Duren <martijn@openbsd.org> @@ -564,7 +564,6 @@ snmpc_get(int argc, char *argv[]) if (!snmpc_print(varbind)) err(1, "Can't print response"); } - sleep(10); ober_free_elements(pdu); snmp_free_agent(agent); return 0; |