summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-15 05:26:22 +0000
committerTim Potter <tpot@samba.org>2001-11-15 05:26:22 +0000
commit06ff349e21abd9398eaac521c3a23c2ab7a10cb2 (patch)
tree7b63d01c57d4f8eb30065e93502bef5100ccba95
parentc5ceae9dc95bb8e0e8a2067c481f394b752f46e7 (diff)
downloadsamba-06ff349e21abd9398eaac521c3a23c2ab7a10cb2.tar.gz
samba-06ff349e21abd9398eaac521c3a23c2ab7a10cb2.tar.bz2
samba-06ff349e21abd9398eaac521c3a23c2ab7a10cb2.zip
FALSE -> False
(This used to be commit 7c6529c081abe051055be5fbf3016fbea2474752)
-rw-r--r--source3/lib/util_list.c2
-rw-r--r--source3/rpc_server/srv_spoolss_nt.c2
-rw-r--r--source3/rpcclient/cmd_spoolss.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/util_list.c b/source3/lib/util_list.c
index 8f6761135b..9795932eca 100644
--- a/source3/lib/util_list.c
+++ b/source3/lib/util_list.c
@@ -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
diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c
index e5ca373479..968044b6cd 100644
--- a/source3/rpc_server/srv_spoolss_nt.c
+++ b/source3/rpc_server/srv_spoolss_nt.c
@@ -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)
diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c
index abcb3589d4..684b6c58db 100644
--- a/source3/rpcclient/cmd_spoolss.c
+++ b/source3/rpcclient/cmd_spoolss.c
@@ -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));