summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-08 03:04:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-08 03:04:09 +0000
commite962532b26346842b9fb60a465dbb2f8b9bbb10a (patch)
treea4d68bf116a79111ed67fdf2f0855df0ec0cdff9
parentacb8669b264008143c8b3faf9e855ab7452cd834 (diff)
kernel is called bsd
-rw-r--r--sys/ddb/db_aout.c4
-rw-r--r--sys/ddb/db_sym.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c
index 453423d7b7c..496efc4d0ac 100644
--- a/sys/ddb/db_aout.c
+++ b/sys/ddb/db_aout.c
@@ -340,10 +340,10 @@ ddb_init()
extern int end;
if (esym > (char *)&end) {
- X_db_sym_init((int *)&end, esym, "netbsd");
+ X_db_sym_init((int *)&end, esym, "bsd");
}
#else
- X_db_sym_init (db_symtab, 0, "netbsd");
+ X_db_sym_init (db_symtab, 0, "bsd");
#endif
}
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 0d929531cb2..416a3ae8fa0 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -113,7 +113,7 @@ db_del_symbol_table(name)
}
/*
- * db_qualify("vm_map", "netbsd") returns "netbsd:vm_map".
+ * db_qualify("vm_map", "bsd") returns "bsd:vm_map".
*
* Note: return value points to static data whose content is
* overwritten by each call... but in practice this seems okay.