r24717: Some more easy bool conversions, update TODO for registry
authorJelmer Vernooij <jelmer@samba.org>
Mon, 27 Aug 2007 18:43:18 +0000 (18:43 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:02:55 +0000 (15:02 -0500)
(This used to be commit fc8771fb6aab815e63334da0159032f7ecd0a931)

BRANCH.TODO [deleted file]
source4/lib/charset/iconv.c
source4/lib/charset/util_unistr.c
source4/lib/messaging/messaging.c
source4/lib/policy/dumpadm.c
source4/lib/registry/TODO
source4/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm

diff --git a/BRANCH.TODO b/BRANCH.TODO
deleted file mode 100644 (file)
index afa2ef7..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-The following things still need to be fixed before this branch 
-can be merged:
-- RPC-WINREG
-- tests for diff functionality
-- test for classname and last_mod_time being kept
index d10b3bb03c258c0d1e404079665d67a84fb01205..4eda585d4e67e7c2be1e0b56a6df970539b94c6f 100644 (file)
@@ -199,7 +199,7 @@ smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode)
        }
 
 #ifdef HAVE_NATIVE_ICONV
-       if ((!from || !to) && !lp_parm_bool(-1, "iconv", "native", True)) {
+       if ((!from || !to) && !lp_parm_bool(-1, "iconv", "native", true)) {
                goto failed;
        }
        if (!from) {
index 3fa3bf75a95ba691d2e633c1badae6ae51b98dc0..6c86b0b899be886812abd8448344275f6883c857 100644 (file)
@@ -167,7 +167,7 @@ _PUBLIC_ bool next_token(const char **ptr,char *buff, const char *sep, size_t bu
        size_t len=1;
 
        if (!ptr)
-               return(False);
+               return false;
 
        s = *ptr;
 
@@ -180,11 +180,11 @@ _PUBLIC_ bool next_token(const char **ptr,char *buff, const char *sep, size_t bu
                s++;
        
        /* nothing left? */
-       if (! *s)
-               return(False);
+       if (!*s)
+               return false;
        
        /* copy over the token */
-       for (quoted = False; len < bufsize && *s && (quoted || !strchr_m(sep,*s)); s++) {
+       for (quoted = false; len < bufsize && *s && (quoted || !strchr_m(sep,*s)); s++) {
                if (*s == '\"') {
                        quoted = !quoted;
                } else {
@@ -196,7 +196,7 @@ _PUBLIC_ bool next_token(const char **ptr,char *buff, const char *sep, size_t bu
        *ptr = (*s) ? s+1 : s;  
        *buff = 0;
        
-       return(True);
+       return true;
 }
 
 /**
@@ -259,9 +259,9 @@ _PUBLIC_ bool strequal_w(const char *s1, const char *s2)
 _PUBLIC_ bool strcsequal_w(const char *s1,const char *s2)
 {
        if (s1 == s2)
-               return(True);
+               return true;
        if (!s1 || !s2)
-               return(False);
+               return false;
        
        return strcmp(s1,s2) == 0;
 }
@@ -442,11 +442,11 @@ _PUBLIC_ bool strhaslower(const char *string)
                t = toupper_w(s);
 
                if (s != t) {
-                       return True; /* that means it has lower case chars */
+                       return true; /* that means it has lower case chars */
                }
        }
 
-       return False;
+       return false;
 } 
 
 /**
@@ -465,11 +465,11 @@ _PUBLIC_ bool strhasupper(const char *string)
                t = tolower_w(s);
 
                if (s != t) {
-                       return True; /* that means it has upper case chars */
+                       return true; /* that means it has upper case chars */
                }
        }
 
-       return False;
+       return false;
 } 
 
 /**
index 24b5ff408df740cf99b412580f8e866bf1a29f69..c4c0d0e05970192a58f1da83b45674d81ad1602e 100644 (file)
@@ -588,7 +588,7 @@ struct messaging_context *messaging_init(TALLOC_CTX *mem_ctx,
        }
 
        /* it needs to be non blocking for sends */
-       set_blocking(socket_get_fd(msg->sock), False);
+       set_blocking(socket_get_fd(msg->sock), false);
 
        msg->event.ev   = talloc_reference(msg, ev);
        msg->event.fde  = event_add_fd(ev, msg, socket_get_fd(msg->sock), 
@@ -676,7 +676,7 @@ static void irpc_handler_reply(struct messaging_context *msg_ctx, struct irpc_me
        } else {
                talloc_steal(irpc, m);
        }
-       irpc->done = True;
+       irpc->done = true;
        if (irpc->async.fn) {
                irpc->async.fn(irpc);
        }
@@ -752,7 +752,7 @@ static void irpc_handler_request(struct messaging_context *msg_ctx,
 
        /* make the call */
        m->private     = i->private;
-       m->defer_reply = False;
+       m->defer_reply = false;
        m->msg_ctx     = msg_ctx;
        m->irpc        = i;
        m->data        = r;
@@ -831,7 +831,7 @@ static void irpc_timeout(struct event_context *ev, struct timed_event *te,
 {
        struct irpc_request *irpc = talloc_get_type(private, struct irpc_request);
        irpc->status = NT_STATUS_IO_TIMEOUT;
-       irpc->done = True;
+       irpc->done = true;
        if (irpc->async.fn) {
                irpc->async.fn(irpc);
        }
@@ -861,10 +861,10 @@ struct irpc_request *irpc_call_send(struct messaging_context *msg_ctx,
        irpc->callid   = idr_get_new(msg_ctx->idr, irpc, UINT16_MAX);
        if (irpc->callid == -1) goto failed;
        irpc->r        = r;
-       irpc->done     = False;
+       irpc->done     = false;
        irpc->async.fn = NULL;
        irpc->mem_ctx  = ctx;
-       irpc->reject_free = False;
+       irpc->reject_free = false;
 
        talloc_set_destructor(irpc, irpc_destructor);
 
index aba09150d73677632817f69363b4a87aa8942ce5..1553ce62f610a1c2de7423b36b7431eb95293c52 100644 (file)
@@ -24,7 +24,7 @@
 
 int main(int argc, char **argv) 
 {
-       BOOL ret = True;
+       bool ret = true;
        poptContext pc;
        struct poptOption long_options[] = {
                POPT_AUTOHELP
index 5f1e7d034ba33ac0bb960a7a3a651c07c70b1018..b5809b84ed14371e24bf3a590d38d4d578c9fa00 100644 (file)
@@ -1,34 +1,5 @@
 - ..\..\, \bla\blie support in regshell
 - finish rpc_server
 
-reg_backend_dir:
- - value support
-
-reg_backend_creg.c:
- - write support
-reg_backend_regf:
- - write support
-
-reg_backend_rpc:
- - value enum support
- - write support
- - rewrite
-reg_backend_ldb:
- - finish 
-
-reg_backend_wine.c:
- - finish 
-
 regshell:
  - support for security descriptors
-
-gregedit.c:
- - support for editing values / adding values / deleting values
- - support for adding/deleting keys
- - support for security descriptors
-
-- pass parsed paths around rather than strings (i.e. just a list of strings)
-- integrate various registry tools ?
-- finish new patchfile code
index 269ccdded394f8beebec279678da1d032abb3f2d..f5ff15dabf0afc24279e7bc7b966ab8d32c77006 100644 (file)
@@ -227,7 +227,7 @@ static NTSTATUS $name\__op_init_server(struct dcesrv_context *dce_ctx, const str
        return NT_STATUS_OK;
 }
 
-static BOOL $name\__op_interface_by_uuid(struct dcesrv_interface *iface, const struct GUID *uuid, uint32_t if_version)
+static bool $name\__op_interface_by_uuid(struct dcesrv_interface *iface, const struct GUID *uuid, uint32_t if_version)
 {
        if (dcesrv_$name\_interface.syntax_id.if_version == if_version &&
                GUID_equal(\&dcesrv\_$name\_interface.syntax_id.uuid, uuid)) {
@@ -238,7 +238,7 @@ static BOOL $name\__op_interface_by_uuid(struct dcesrv_interface *iface, const s
        return False;
 }
 
-static BOOL $name\__op_interface_by_name(struct dcesrv_interface *iface, const char *name)
+static bool $name\__op_interface_by_name(struct dcesrv_interface *iface, const char *name)
 {
        if (strcmp(dcesrv_$name\_interface.name, name)==0) {
                memcpy(iface, &dcesrv_$name\_interface, sizeof(*iface));