From: Andreas Schneider Date: Thu, 13 Jul 2023 07:18:42 +0000 (+0200) Subject: s3:param: Rename bLoaded global variable X-Git-Tag: ldb-2.8.0~109 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8d5e70a913f76887927d99a58e6c4f90f6bec65;p=thirdparty%2Fsamba.git s3:param: Rename bLoaded global variable This makes codespell happy. Signed-off-by: Andreas Schneider Reviewed-by: Joseph Sutton --- diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index fd9157fb95f..3a7acc6cdf6 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -86,7 +86,7 @@ #include #endif -bool bLoaded = false; +bool b_loaded = false; /* the special value for the include parameter * to be interpreted not as a file name but to @@ -3047,7 +3047,7 @@ void lp_add_one_printer(const char *name, const char *comment, bool lp_loaded(void) { - return (bLoaded); + return (b_loaded); } /*************************************************************************** @@ -4109,7 +4109,7 @@ static bool lp_load_ex(const char *pszFname, lp_password_server())); } - bLoaded = true; + b_loaded = true; /* Now we check we_are_a_wins_server and set szWINSserver to 127.0.0.1 */ /* if we_are_a_wins_server is true and we are in the client */