mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 04:52:47 -05:00
Make more file-scope variables static.
In the previous trawl of this, I didn't bother with the statics in main-program modules, on the grounds that my main aim was to avoid 'library' objects (shared between multiple programs) from polluting the global namespace. But I think it's worth being more strict after all, so this commit adds 'static' to a lot more file-scope variables that aren't needed outside their own module.
This commit is contained in:
8
cmdgen.c
8
cmdgen.c
@ -34,7 +34,7 @@
|
||||
* I define another main() which calls the former repeatedly to
|
||||
* run tests.
|
||||
*/
|
||||
bool cgtest_verbose = false;
|
||||
static bool cgtest_verbose = false;
|
||||
#define get_random_data get_random_data_diagnostic
|
||||
char *get_random_data(int len, const char *device)
|
||||
{
|
||||
@ -43,8 +43,8 @@ char *get_random_data(int len, const char *device)
|
||||
return buf;
|
||||
}
|
||||
#define console_get_userpass_input console_get_userpass_input_diagnostic
|
||||
int nprompts, promptsgot;
|
||||
const char *prompts[3];
|
||||
static int nprompts, promptsgot;
|
||||
static const char *prompts[3];
|
||||
int console_get_userpass_input(prompts_t *p)
|
||||
{
|
||||
size_t i;
|
||||
@ -1118,7 +1118,7 @@ int main(int argc, char **argv)
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
int passes, fails;
|
||||
static int passes, fails;
|
||||
|
||||
void setup_passphrases(char *first, ...)
|
||||
{
|
||||
|
Reference in New Issue
Block a user