summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-03-24 09:36:41 +0000
committerjkh <jkh@FreeBSD.org>1996-03-24 09:36:41 +0000
commiteaa58a1398b60a353601cd0e32b505abe11e8f0c (patch)
tree086c6ddefba41e5ccd3e4b72c47020b634b1bdd9 /usr.sbin
parent4a2e323e1bbc2c0595ddab06b1a6201952e592bb (diff)
downloadFreeBSD-src-eaa58a1398b60a353601cd0e32b505abe11e8f0c.zip
FreeBSD-src-eaa58a1398b60a353601cd0e32b505abe11e8f0c.tar.gz
Remove some rather useless debugging messages.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sade/devices.c6
-rw-r--r--usr.sbin/sysinstall/devices.c6
2 files changed, 2 insertions, 10 deletions
diff --git a/usr.sbin/sade/devices.c b/usr.sbin/sade/devices.c
index 3781bee..06e537f 100644
--- a/usr.sbin/sade/devices.c
+++ b/usr.sbin/sade/devices.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: devices.c,v 1.40 1996/03/02 07:31:51 jkh Exp $
+ * $Id: devices.c,v 1.41 1996/03/18 15:27:46 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -116,21 +116,18 @@ new_device(char *name)
Boolean
dummyInit(Device *dev)
{
- msgDebug("Dummy init called for %s\n", dev->name);
return TRUE;
}
int
dummyGet(Device *dev, char *dist, Boolean probe)
{
- msgDebug("Dummy get called for %s\n", dev->name);
return -1;
}
Boolean
dummyClose(Device *dev, int fd)
{
- msgDebug("Dummy [default] close called for %s with fd of %d.\n", dev->name, fd);
if (!close(fd))
return TRUE;
return FALSE;
@@ -139,7 +136,6 @@ dummyClose(Device *dev, int fd)
void
dummyShutdown(Device *dev)
{
- msgDebug("Dummy shutdown called for %s\n", dev->name);
return;
}
diff --git a/usr.sbin/sysinstall/devices.c b/usr.sbin/sysinstall/devices.c
index 3781bee..06e537f 100644
--- a/usr.sbin/sysinstall/devices.c
+++ b/usr.sbin/sysinstall/devices.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: devices.c,v 1.40 1996/03/02 07:31:51 jkh Exp $
+ * $Id: devices.c,v 1.41 1996/03/18 15:27:46 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -116,21 +116,18 @@ new_device(char *name)
Boolean
dummyInit(Device *dev)
{
- msgDebug("Dummy init called for %s\n", dev->name);
return TRUE;
}
int
dummyGet(Device *dev, char *dist, Boolean probe)
{
- msgDebug("Dummy get called for %s\n", dev->name);
return -1;
}
Boolean
dummyClose(Device *dev, int fd)
{
- msgDebug("Dummy [default] close called for %s with fd of %d.\n", dev->name, fd);
if (!close(fd))
return TRUE;
return FALSE;
@@ -139,7 +136,6 @@ dummyClose(Device *dev, int fd)
void
dummyShutdown(Device *dev)
{
- msgDebug("Dummy shutdown called for %s\n", dev->name);
return;
}
OpenPOWER on IntegriCloud