diff options
author | Tim Potter <tpot@samba.org> | 2002-01-14 02:22:31 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-14 02:22:31 +0000 |
commit | e69a22290e5c923f31223906461df4874e3b2aac (patch) | |
tree | effcf222c8b78b7c5c45f3e257bc88fbf1cc32e1 | |
parent | 7417d6f9310188d2ad3d8f41d3dcbe55862c72ac (diff) | |
download | samba-e69a22290e5c923f31223906461df4874e3b2aac.tar.gz |
Removed fprintf(stderr, ...); calls which should not be present in library
functions.
-rw-r--r-- | source/libsmb/clidgram.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source/libsmb/clidgram.c b/source/libsmb/clidgram.c index ded47b7d068..1dffe679680 100644 --- a/source/libsmb/clidgram.c +++ b/source/libsmb/clidgram.c @@ -21,8 +21,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define NO_SYSLOG - #include "includes.h" /* @@ -54,9 +52,7 @@ int cli_send_mailslot(int dgram_sock, BOOL unique, char *mailslot, dgram->header.flags.more = False; dgram->header.dgm_id = ((unsigned)time(NULL)%(unsigned)0x7FFF) + ((unsigned)sys_getpid()%(unsigned)100); dgram->header.source_ip.s_addr = src_ip.s_addr; - /*fprintf(stderr, "Source IP = %0X\n", dgram->header.source_ip); */ dgram->header.source_port = ntohs(src_port); - fprintf(stderr, "Source Port = %0X\n", dgram->header.source_port); dgram->header.dgm_length = 0; /* Let build_dgram() handle this. */ dgram->header.packet_offset = 0; |