diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-17 14:27:12 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-17 14:27:12 +0000 |
commit | efb8113d00a4513c1115640004c0905465d3b673 (patch) | |
tree | 13823188f1f1b05a4861611a806109d2281e6479 /source3/utils | |
parent | e351461e094a14caed31b7eae37e39d935d30561 (diff) | |
download | samba-efb8113d00a4513c1115640004c0905465d3b673.tar.gz samba-efb8113d00a4513c1115640004c0905465d3b673.tar.bz2 samba-efb8113d00a4513c1115640004c0905465d3b673.zip |
- made FAST_SHARE_MODES standard for Linux
- you can now press enter after a password prompt with "smbclient -L
hostname" and it will use a blank username and password, the same as
if you used -U%
- changed the wins.dat store code to not go via a string variable
(just use fprintf instead)
- removed a "unsigned long" that luke put back in, changing it to
uint32 to keep 64 bit machines happy. Naughtly luke!
- allow guest non-connnected print queue listings so ms client 3 can
work
(This used to be commit 917160dee69bbc198985b6f3232ca2dcda809d8a)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/status.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c index c9fda5d359..ab61a4db89 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -55,7 +55,7 @@ unsigned int Ucrit_IsActive = 0; /* added by OH */ BOOL firstopen=True; BOOL processes_only=False; int last_pid=0; -#ifdef FAST_SHARE_MODES +#if FAST_SHARE_MODES pstring shmem_file_name; share_mode_record *scanner_p; share_mode_record *prev_p; @@ -165,7 +165,7 @@ unsigned int Ucrit_IsActive = 0; /* added by OH */ printf("\n"); -#ifdef FAST_SHARE_MODES +#if FAST_SHARE_MODES /******************************************************************* initialize the shared memory for share_mode management ******************************************************************/ @@ -286,7 +286,7 @@ unsigned int Ucrit_IsActive = 0; /* added by OH */ } printf(" %s %s",fname,asctime(LocalTime(&t))); -#ifdef FAST_SHARE_MODES +#if FAST_SHARE_MODES prev_p = scanner_p ; scanner_p = (share_mode_record *)shm_offset2addr(scanner_p->next_offset); } /* end while */ @@ -307,7 +307,7 @@ unsigned int Ucrit_IsActive = 0; /* added by OH */ #endif if (firstopen) printf("No locked files\n"); -#ifdef FAST_SHARE_MODES +#if FAST_SHARE_MODES printf("\nShare mode memory usage (bytes):\n"); printf(" %d(%d%%) free + %d(%d%%) used + %d(%d%%) overhead = %d(100%%) total\n", bytes_free, (bytes_free * 100)/bytes_total, |