From 5b8823e49ac6601ffe4b06495b3e7a95e2337090 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 9 Mar 2008 13:50:56 +0100 Subject: smbget: Make global variables static. (This used to be commit c430b7831d5dc6f81cfd18ee2bf24bc3f276fe5d) --- source3/utils/smbget.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source3/utils/smbget.c b/source3/utils/smbget.c index e5185d09f0..1b916c8563 100644 --- a/source3/utils/smbget.c +++ b/source3/utils/smbget.c @@ -27,14 +27,14 @@ #define OFF_T_FORMAT_CAST long #endif -int columns = 0; +static int columns = 0; static int _resume, _recursive, debuglevel, update; static char *outputfile; -time_t total_start_time = 0; -off_t total_bytes = 0; +static time_t total_start_time = 0; +static off_t total_bytes = 0; #define SMB_MAXPATHLEN MAXPATHLEN @@ -45,9 +45,9 @@ off_t total_bytes = 0; /* Number of bytes to read at once */ #define SMB_DEFAULT_BLOCKSIZE 64000 -const char *username = NULL, *password = NULL, *workgroup = NULL; -int nonprompt = 0, quiet = 0, dots = 0, keep_permissions = 0, verbose = 0, send_stdout = 0; -int blocksize = SMB_DEFAULT_BLOCKSIZE; +static const char *username = NULL, *password = NULL, *workgroup = NULL; +static int nonprompt = 0, quiet = 0, dots = 0, keep_permissions = 0, verbose = 0, send_stdout = 0; +static int blocksize = SMB_DEFAULT_BLOCKSIZE; static int smb_download_file(const char *base, const char *name, int recursive, int resume, char *outfile); -- cgit