diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-05 02:54:37 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-05 02:54:37 +0000 |
commit | 61e3116e573637d6b5a878eeb8db72831e3c5bd1 (patch) | |
tree | 80d58d866f0e6ff03d112b11edaf59ec8c3d1959 /source/client/clitar.c | |
parent | dff891e69d1fd0175f806e00d10ddbcbb9fc7b0b (diff) | |
download | samba-61e3116e573637d6b5a878eeb8db72831e3c5bd1.tar.gz samba-61e3116e573637d6b5a878eeb8db72831e3c5bd1.tar.xz samba-61e3116e573637d6b5a878eeb8db72831e3c5bd1.zip |
- use workgroup from smb.conf in smbclient
- change debug level on clitar stuff
- define MAP_FILE if not defined
- ensure we never set authoritative on queries in nmbd
- fake a positive response to SMBioctl, apparently this is needed for
some WfWg printer drivers
- deny file access for non-fcbopen queries when (access_allowed == AREAD && flags == O_RDWR)
- add sys_waitpid()
Diffstat (limited to 'source/client/clitar.c')
-rw-r--r-- | source/client/clitar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/client/clitar.c b/source/client/clitar.c index 13df5fef9ad..191e0e4dab0 100644 --- a/source/client/clitar.c +++ b/source/client/clitar.c @@ -823,7 +823,7 @@ static void do_atar(char *rname,char *lname,file_info *finfo1) datalen = 0; } - DEBUG(2,("getting file %s of size %d bytes as a tar file %s", + DEBUG(1,("getting file %s of size %d bytes as a tar file %s", finfo.name, finfo.size, lname)); @@ -1079,7 +1079,7 @@ static void do_atar(char *rname,char *lname,file_info *finfo1) get_total_size += finfo.size; /* Thanks to Carel-Jan Engel (ease@mail.wirehub.nl) for this one */ - DEBUG(2,("(%g kb/s) (average %g kb/s)\n", + DEBUG(1,("(%g kb/s) (average %g kb/s)\n", finfo.size / MAX(0.001, (1.024*this_time)), get_total_size / MAX(0.001, (1.024*get_total_time_ms)))); } @@ -1406,7 +1406,7 @@ void cmd_block(void) } blocksize=block; - DEBUG(2,("blocksize is now %d\n", blocksize)); + DEBUG(1,("blocksize is now %d\n", blocksize)); } /**************************************************************************** @@ -1483,7 +1483,7 @@ void cmd_setmode(void) return; } - DEBUG(2, ("\nperm set %d %d\n", attra[ATTRSET], attra[ATTRRESET])); + DEBUG(1, ("\nperm set %d %d\n", attra[ATTRSET], attra[ATTRRESET])); (void) do_setrattr(fname, attra[ATTRSET], ATTRSET); (void) do_setrattr(fname, attra[ATTRRESET], ATTRRESET); } |