From 90a18110e9c014ff33977be4656886b093c7e022 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 24 Nov 2004 01:03:23 +0000 Subject: r3931: Fix all "may be used uninitialized" and "shadow" warnings. Jeremy. (This used to be commit 8e979772a640bb4f00f4d72b6a9c837b8ef14333) --- source3/utils/status.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/utils/status.c') diff --git a/source3/utils/status.c b/source3/utils/status.c index 122c6193f9..73cf2a2e29 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -50,20 +50,20 @@ static int show_brl; const char *username = NULL; /* added by OH */ -static void Ucrit_addUsername(const char *username) +static void Ucrit_addUsername(const char *user_name) { - pstrcpy(Ucrit_username, username); + pstrcpy(Ucrit_username, user_name); if ( strlen(Ucrit_username) > 0 ) Ucrit_IsActive = 1; } -static unsigned int Ucrit_checkUsername(const char *username) +static unsigned int Ucrit_checkUsername(const char *user_name) { if ( !Ucrit_IsActive ) return 1; - if ( strcmp(Ucrit_username,username) == 0 ) + if ( strcmp(Ucrit_username,user_name) == 0 ) return 1; return 0; -- cgit