From: deraadt Date: Fri, 8 Dec 1995 03:04:07 +0000 (+0000) Subject: kernel is called bsd X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a452d815681f3b28eeb6ea1d616d8035914391c4;p=openbsd kernel is called bsd --- 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.