View | Details | Raw Unified | Return to bug 22582
Collapse All | Expand All

(-)sysctl.c.new (-2 / +2 lines)
Lines 42-48 Link Here
42
static char sccsid[] = "@(#)from: sysctl.c	8.1 (Berkeley) 6/6/93";
42
static char sccsid[] = "@(#)from: sysctl.c	8.1 (Berkeley) 6/6/93";
43
#endif
43
#endif
44
static const char rcsid[] =
44
static const char rcsid[] =
45
  "$FreeBSD: /c/ncvs/src/sbin/sysctl/sysctl.c,v 1.25.2.1 2000/07/19 06:22:20 kbyanc Exp $";
45
  "$FreeBSD: src/sbin/sysctl/sysctl.c,v 1.25.2.1 2000/07/19 06:22:20 kbyanc Exp $";
46
#endif /* not lint */
46
#endif /* not lint */
47
47
48
#include <sys/types.h>
48
#include <sys/types.h>
Lines 345-351 Link Here
345
show_var(int *oid, int nlen)
345
show_var(int *oid, int nlen)
346
{
346
{
347
	u_char buf[BUFSIZ], *val, *p;
347
	u_char buf[BUFSIZ], *val, *p;
348
	char name[BUFSIZ], descr[BUFSIZ], *fmt;
348
	char name[BUFSIZ], *fmt;
349
	int qoid[CTL_MAXNAME+2];
349
	int qoid[CTL_MAXNAME+2];
350
	int i;
350
	int i;
351
	size_t j, len;
351
	size_t j, len;

Return to bug 22582