converted another bunch of stuff to NTSTATUS
[kai/samba.git] / source3 / libsmb / cli_lsarpc.c
index 8cf081742007d26f2d80cd63d6d9f40d9c36b5f6..023f7f8dae4f716732bc346061d3e5de1225a440 100644 (file)
@@ -78,7 +78,7 @@ uint32 cli_lsa_open_policy(struct cli_state *cli, TALLOC_CTX *mem_ctx,
 
        /* Return output parameters */
 
-       if ((result = r.status) == NT_STATUS_NOPROBLEMO) {
+       if ((result = r.status) == NT_STATUS_OK) {
                *pol = r.pol;
        }
 
@@ -136,7 +136,7 @@ uint32 cli_lsa_open_policy2(struct cli_state *cli, TALLOC_CTX *mem_ctx,
 
        /* Return output parameters */
 
-       if ((result = r.status) == NT_STATUS_NOPROBLEMO) {
+       if ((result = r.status) == NT_STATUS_OK) {
                *pol = r.pol;
        }
 
@@ -184,7 +184,7 @@ uint32 cli_lsa_close(struct cli_state *cli, TALLOC_CTX *mem_ctx,
 
        /* Return output parameters */
 
-       if ((result = r.status) == NT_STATUS_NOPROBLEMO) {
+       if ((result = r.status) == NT_STATUS_OK) {
                *pol = r.pol;
        }
 
@@ -242,7 +242,7 @@ uint32 cli_lsa_lookup_sids(struct cli_state *cli, TALLOC_CTX *mem_ctx,
 
        result = r.status;
 
-       if (result != NT_STATUS_NOPROBLEMO && result != 0x00000107 &&
+       if (result != NT_STATUS_OK && result != 0x00000107 &&
            result != (0xC0000000 | NT_STATUS_NONE_MAPPED)) {
                
                /* An actual error occured */
@@ -250,7 +250,7 @@ uint32 cli_lsa_lookup_sids(struct cli_state *cli, TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       result = NT_STATUS_NOPROBLEMO;
+       result = NT_STATUS_OK;
 
        /* Return output parameters */
 
@@ -347,7 +347,7 @@ uint32 cli_lsa_lookup_names(struct cli_state *cli, TALLOC_CTX *mem_ctx,
 
        result = r.status;
 
-       if (result != NT_STATUS_NOPROBLEMO && 
+       if (result != NT_STATUS_OK && 
            result != (0xC0000000 | NT_STATUS_NONE_MAPPED)) {
 
                /* An actual error occured */
@@ -355,7 +355,7 @@ uint32 cli_lsa_lookup_names(struct cli_state *cli, TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       result = NT_STATUS_NOPROBLEMO;
+       result = NT_STATUS_OK;
 
        /* Return output parameters */
 
@@ -441,7 +441,7 @@ uint32 cli_lsa_query_info_policy(struct cli_state *cli, TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       if ((result = r.status) != NT_STATUS_NOPROBLEMO) {
+       if ((result = r.status) != NT_STATUS_OK) {
                goto done;
        }
 
@@ -536,7 +536,7 @@ uint32 cli_lsa_enum_trust_dom(struct cli_state *cli, TALLOC_CTX *mem_ctx,
           0x8000001a (NT_STATUS_UNABLE_TO_FREE_VM) so we ignore it and
           pretend everything is OK. */
 
-       if (result != NT_STATUS_NOPROBLEMO && 
+       if (result != NT_STATUS_OK && 
            result != NT_STATUS_UNABLE_TO_FREE_VM) {
 
                /* An actual error ocured */
@@ -544,7 +544,7 @@ uint32 cli_lsa_enum_trust_dom(struct cli_state *cli, TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       result = NT_STATUS_NOPROBLEMO;
+       result = NT_STATUS_OK;
 
        /* Return output parameters */