diff options
author | 2004-02-22 09:03:05 +0000 | |
---|---|---|
committer | 2004-02-22 09:03:05 +0000 | |
commit | 4c9a856a12371cbeb7b6c837be5e32efd002fa2a (patch) | |
tree | 12c4b04de37726c1ff677f713a76af2e66218eb9 | |
parent | be more emphatic: ptys are still allocated using openpty(3), it just (diff) | |
download | wireguard-openbsd-4c9a856a12371cbeb7b6c837be5e32efd002fa2a.tar.xz wireguard-openbsd-4c9a856a12371cbeb7b6c837be5e32efd002fa2a.zip |
Remove #if 0'd code.
requested by weingart@
-rw-r--r-- | sys/arch/amd64/stand/installboot/installboot.c | 8 | ||||
-rw-r--r-- | sys/arch/i386/stand/installboot/installboot.c | 8 |
2 files changed, 2 insertions, 14 deletions
diff --git a/sys/arch/amd64/stand/installboot/installboot.c b/sys/arch/amd64/stand/installboot/installboot.c index 75dff1929d7..a0c1bcace98 100644 --- a/sys/arch/amd64/stand/installboot/installboot.c +++ b/sys/arch/amd64/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.2 2004/02/21 00:48:59 tom Exp $ */ +/* $OpenBSD: installboot.c,v 1.3 2004/02/22 09:03:05 tom Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -534,11 +534,5 @@ pbr_set_symbols(char *fname, char *proto, struct sym_data *sym_list) } free(nl); - -#if 0 - if (verbose) - fprintf(stderr, "%s = %u\n", - sym->sym_name, sym->sym_value); -#endif } } diff --git a/sys/arch/i386/stand/installboot/installboot.c b/sys/arch/i386/stand/installboot/installboot.c index 0ffefbfbe3d..e7506cb18c6 100644 --- a/sys/arch/i386/stand/installboot/installboot.c +++ b/sys/arch/i386/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.44 2004/02/21 00:29:57 tom Exp $ */ +/* $OpenBSD: installboot.c,v 1.45 2004/02/22 09:03:05 tom Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -530,11 +530,5 @@ pbr_set_symbols(char *fname, char *proto, struct sym_data *sym_list) } free(nl); - -#if 0 - if (verbose) - fprintf(stderr, "%s = %u\n", - sym->sym_name, sym->sym_value); -#endif } } |