1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

FALSE -> False

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent ed16aa88a4
commit 7c6529c081
3 changed files with 3 additions and 3 deletions

View File

@ -230,7 +230,7 @@ BOOL compare_rpc_hnd_node(const RPC_HND_NODE *x,
{
/* only compare valid nodes */
if (x==NULL || y==NULL)
return FALSE;
return False;
/* if the POLICY_HND field(s) are ever changed, this
will need to be updated. Probably should be a set of

View File

@ -5895,7 +5895,7 @@ static WERROR getprinterdriverdir_level_1(UNISTR2 *name, UNISTR2 *uni_environmen
unistr2_to_ascii(long_archi, uni_environment, sizeof(long_archi)-1);
if (get_short_archi(short_archi, long_archi)==FALSE)
if (get_short_archi(short_archi, long_archi)==False)
return WERR_INVALID_ENVIRONMENT;
if((info=(DRIVER_DIRECTORY_1 *)malloc(sizeof(DRIVER_DIRECTORY_1))) == NULL)

View File

@ -58,7 +58,7 @@ BOOL get_short_archi(char *short_archi, char *long_archi)
if (archi_table[i].long_archi==NULL) {
DEBUGADD(10,("Unknown architecture [%s] !\n", long_archi));
return FALSE;
return False;
}
StrnCpy (short_archi, archi_table[i].short_archi, strlen(archi_table[i].short_archi));