summaryrefslogtreecommitdiffstats
path: root/source/nmbd/nmbd.c
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-07-31 22:39:15 +0000
committerChristopher R. Hertel <crh@samba.org>1998-07-31 22:39:15 +0000
commit60286ccecaa6028d687e6406755016455e3b3a26 (patch)
treeb3dde9d1f6ecf619d20e64e4a27921452c02e1fb /source/nmbd/nmbd.c
parent2c6dc2779647bbc0c27a102632882e617ef7643e (diff)
downloadsamba-60286ccecaa6028d687e6406755016455e3b3a26.tar.gz
samba-60286ccecaa6028d687e6406755016455e3b3a26.tar.xz
samba-60286ccecaa6028d687e6406755016455e3b3a26.zip
As per a Andrew's message, I went through and removed the timestring()
timestamps from several DEBUG messages. The timestamps are redundant now that DEBUG() provides them automatically. There are still a few more files to do, but I've got to get home for dinner. Chris -)-----
Diffstat (limited to 'source/nmbd/nmbd.c')
-rw-r--r--source/nmbd/nmbd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/nmbd/nmbd.c b/source/nmbd/nmbd.c
index 3fa749b883c..af12911e7e7 100644
--- a/source/nmbd/nmbd.c
+++ b/source/nmbd/nmbd.c
@@ -656,12 +656,12 @@ int main(int argc,char *argv[])
reopen_logs();
- DEBUG(1,("%s netbios nameserver version %s started\n",timestring(),VERSION));
- DEBUG(1,("Copyright Andrew Tridgell 1994-1997\n"));
+ DEBUG( 1, ( "Netbios nameserver version %s started.\n", VERSION ) );
+ DEBUGADD( 1, ( "Copyright Andrew Tridgell 1994-1997\n" ) );
if( !get_myname( myhostname, NULL) )
{
- DEBUG(0,("Unable to get my hostname - exiting.\n"));
+ DEBUG( 0, ( "Unable to get my hostname - exiting.\n" ) );
return -1;
}
@@ -693,7 +693,7 @@ int main(int argc,char *argv[])
if (is_daemon)
{
- DEBUG(2,("%s becoming a daemon\n",timestring()));
+ DEBUG( 2, ( "Becoming a daemon.\n" ) );
become_daemon();
}