diff options
author | 2008-08-04 04:26:42 +0000 | |
---|---|---|
committer | 2008-08-04 04:26:42 +0000 | |
commit | ab3d64f6aca40c9d6d96ae288e30f436199c19a0 (patch) | |
tree | d8c5190263b842d6f996cb1517448d13f20c98ea | |
parent | sync (diff) | |
download | wireguard-openbsd-ab3d64f6aca40c9d6d96ae288e30f436199c19a0.tar.xz wireguard-openbsd-ab3d64f6aca40c9d6d96ae288e30f436199c19a0.zip |
Properly output machdep.chipset values on alpha models without pci buses;
ok deraadt@
-rw-r--r-- | sbin/sysctl/sysctl.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index b99542d314d..e3315e0dcf1 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.159 2008/07/12 12:04:10 thib Exp $ */ +/* $OpenBSD: sysctl.c,v 1.160 2008/08/04 04:26:42 miod Exp $ */ /* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */ /* @@ -40,7 +40,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)sysctl.c 8.5 (Berkeley) 5/9/95"; #else -static const char rcsid[] = "$OpenBSD: sysctl.c,v 1.159 2008/07/12 12:04:10 thib Exp $"; +static const char rcsid[] = "$OpenBSD: sysctl.c,v 1.160 2008/08/04 04:26:42 miod Exp $"; #endif #endif /* not lint */ @@ -1880,30 +1880,32 @@ sysctl_chipset(char *string, char **bufpp, int mib[], int flags, int *typep) case CPU_CHIPSET_HAE_MASK: len = sizeof(void *); if (sysctl(mib, 3, &q, &len, NULL, 0) < 0) - return (-1); - printf("%p\n", q); + goto done; + printf("%p", q); break; case CPU_CHIPSET_BWX: len = sizeof(int); if (sysctl(mib, 3, &bwx, &len, NULL, 0) < 0) - return (-1); - printf("%d\n", bwx); + goto done; + printf("%d", bwx); break; case CPU_CHIPSET_TYPE: if (sysctl(mib, 3, NULL, &len, NULL, 0) < 0) - return (-1); + goto done; p = malloc(len + 1); if (p == NULL) - return (-1); + goto done; if (sysctl(mib, 3, p, &len, NULL, 0) < 0) { free(p); - return (-1); + goto done; } p[len] = '\0'; - printf("%s\n", p); + printf("%s", p); free(p); break; } +done: + printf("\n"); return (-1); } #endif |