diff options
author | 2006-10-13 00:00:55 +0000 | |
---|---|---|
committer | 2006-10-13 00:00:55 +0000 | |
commit | f66acc0f5769145e71092ae24562f771ada000e4 (patch) | |
tree | 43ac654befc833bdec7bd1396c0d9140a7fbc319 | |
parent | Added exportable aml_getpciaddr (diff) | |
download | wireguard-openbsd-f66acc0f5769145e71092ae24562f771ada000e4.tar.xz wireguard-openbsd-f66acc0f5769145e71092ae24562f771ada000e4.zip |
'no BSD partition' -> 'no OpenBSD partition' for error message.
ok deraadt@
-rw-r--r-- | sys/arch/zaurus/stand/zboot/diskprobe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/zaurus/stand/zboot/diskprobe.c b/sys/arch/zaurus/stand/zboot/diskprobe.c index 4dd8f29c750..c776b372c75 100644 --- a/sys/arch/zaurus/stand/zboot/diskprobe.c +++ b/sys/arch/zaurus/stand/zboot/diskprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diskprobe.c,v 1.2 2005/05/26 23:49:18 uwe Exp $ */ +/* $OpenBSD: diskprobe.c,v 1.3 2006/10/13 00:00:55 krw Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -226,7 +226,7 @@ bios_getdiskinfo(int dev, bios_diskinfo_t *bdi) bdi->bios_number = dev; if (bios_getdospart(bdi) < 0) - return "no BSD partition"; + return "no OpenBSD partition"; return 0; } @@ -295,7 +295,7 @@ bios_getdisklabel(bios_diskinfo_t *bdi, struct disklabel *label) part = bios_getdospart(bdi); if (part < 0) - return "no BSD partition"; + return "no OpenBSD partition"; bios_devpath(bdi->bios_number, part, path); |