nterr: remove space indents (use tabs instead), following coding standards.
authorGünther Deschner <gd@samba.org>
Thu, 3 Mar 2011 00:16:22 +0000 (01:16 +0100)
committerGünther Deschner <gd@samba.org>
Fri, 4 Mar 2011 00:18:41 +0000 (01:18 +0100)
Guenther

source3/libsmb/nterr.c
source4/libcli/util/nterr.c

index 82bdc4953e1e8ef15da6ef951f09ec46c59d553a..726fc4e72b4d521d3c6436ffa50f3b8a2496c02b 100644 (file)
@@ -539,7 +539,7 @@ static const nt_err_code_struct nt_errs[] =
        { "NT_STATUS_DS_NO_MORE_RIDS", NT_STATUS_DS_NO_MORE_RIDS },
        { "NT_STATUS_NOT_A_REPARSE_POINT", NT_STATUS_NOT_A_REPARSE_POINT },
        { "NT_STATUS_DOWNGRADE_DETECTED", NT_STATUS_DOWNGRADE_DETECTED },
-        { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
+       { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
        { "STATUS_MORE_ENTRIES", STATUS_MORE_ENTRIES },
        { "STATUS_SOME_UNMAPPED", STATUS_SOME_UNMAPPED },
        { "STATUS_NO_MORE_FILES", STATUS_NO_MORE_FILES },
@@ -669,12 +669,12 @@ nt_err_code_struct nt_err_desc[] =
 
 const char *nt_errstr(NTSTATUS nt_code)
 {
-        int idx = 0;
+       int idx = 0;
        char *result;
 
 #ifdef HAVE_LDAP
-        if (NT_STATUS_IS_LDAP(nt_code)) {
-                return ldap_err2string(NT_STATUS_LDAP_CODE(nt_code));
+       if (NT_STATUS_IS_LDAP(nt_code)) {
+               return ldap_err2string(NT_STATUS_LDAP_CODE(nt_code));
        }
 #endif
 
@@ -685,7 +685,7 @@ const char *nt_errstr(NTSTATUS nt_code)
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (NT_STATUS_EQUAL(nt_errs[idx].nt_errcode, nt_code)) {
-                        return nt_errs[idx].nt_errstr;
+                       return nt_errs[idx].nt_errstr;
                }
                idx++;
        }
@@ -702,11 +702,11 @@ const char *nt_errstr(NTSTATUS nt_code)
 
 const char *get_friendly_nt_error_msg(NTSTATUS nt_code)
 {
-        int idx = 0;
+       int idx = 0;
 
        while (nt_err_desc[idx].nt_errstr != NULL) {
                if (NT_STATUS_V(nt_err_desc[idx].nt_errcode) == NT_STATUS_V(nt_code)) {
-                        return nt_err_desc[idx].nt_errstr;
+                       return nt_err_desc[idx].nt_errstr;
                }
                idx++;
        }
@@ -723,12 +723,12 @@ const char *get_friendly_nt_error_msg(NTSTATUS nt_code)
 const char *get_nt_error_c_code(NTSTATUS nt_code)
 {
        char *result;
-        int idx = 0;
+       int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (NT_STATUS_V(nt_errs[idx].nt_errcode) ==
-                    NT_STATUS_V(nt_code)) {
-                        return nt_errs[idx].nt_errstr;
+                   NT_STATUS_V(nt_code)) {
+                       return nt_errs[idx].nt_errstr;
                }
                idx++;
        }
@@ -745,11 +745,11 @@ const char *get_nt_error_c_code(NTSTATUS nt_code)
 
 NTSTATUS nt_status_string_to_code(const char *nt_status_str)
 {
-        int idx = 0;
+       int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (strcmp(nt_errs[idx].nt_errstr, nt_status_str) == 0) {
-                        return nt_errs[idx].nt_errcode;
+                       return nt_errs[idx].nt_errcode;
                }
                idx++;
        }
index 45e3bf9eac8b07bfcf22e00524b2e00485a5eaf8..0a5d2a3e902542845b388b61339583d913983365 100644 (file)
@@ -543,7 +543,7 @@ static const nt_err_code_struct nt_errs[] =
        { "NT_STATUS_QUOTA_LIST_INCONSISTENT", NT_STATUS_QUOTA_LIST_INCONSISTENT },
        { "NT_STATUS_FILE_IS_OFFLINE", NT_STATUS_FILE_IS_OFFLINE },
        { "NT_STATUS_DS_NO_MORE_RIDS", NT_STATUS_DS_NO_MORE_RIDS },
-        { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
+       { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
        { "NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED", NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED },
        { "NT_STATUS_RPC_UNSUPPORTED_NAME_SYNTAX", NT_STATUS_RPC_UNSUPPORTED_NAME_SYNTAX },
        { "NT_STATUS_RPC_UNKNOWN_IF", NT_STATUS_RPC_UNKNOWN_IF },
@@ -839,13 +839,13 @@ static const nt_err_code_struct nt_err_desc[] =
  *****************************************************************************/
 const char *nt_errstr(NTSTATUS nt_code)
 {
-        static char msg[40];
-        int idx = 0;
+       static char msg[40];
+       int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (NT_STATUS_V(nt_errs[idx].nt_errcode) ==
-                    NT_STATUS_V(nt_code)) {
-                        return nt_errs[idx].nt_errstr;
+                   NT_STATUS_V(nt_code)) {
+                       return nt_errs[idx].nt_errstr;
                }
                idx++;
        }
@@ -857,7 +857,7 @@ const char *nt_errstr(NTSTATUS nt_code)
 
        slprintf(msg, sizeof(msg), "NT code 0x%08x", NT_STATUS_V(nt_code));
 
-        return msg;
+       return msg;
 }
 
 /************************************************************************
@@ -865,11 +865,11 @@ const char *nt_errstr(NTSTATUS nt_code)
  ***********************************************************************/
 const char *get_friendly_nt_error_msg(NTSTATUS nt_code)
 {
-        int idx = 0;
+       int idx = 0;
 
        while (nt_err_desc[idx].nt_errstr != NULL) {
                if (NT_STATUS_V(nt_err_desc[idx].nt_errcode) == NT_STATUS_V(nt_code)) {
-                        return nt_err_desc[idx].nt_errstr;
+                       return nt_err_desc[idx].nt_errstr;
                }
                idx++;
        }
@@ -883,20 +883,20 @@ const char *get_friendly_nt_error_msg(NTSTATUS nt_code)
  *****************************************************************************/
 const char *get_nt_error_c_code(NTSTATUS nt_code)
 {
-        static char out[40];
-        int idx = 0;
+       static char out[40];
+       int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (NT_STATUS_V(nt_errs[idx].nt_errcode) ==
-                    NT_STATUS_V(nt_code)) {
-                        return nt_errs[idx].nt_errstr;
+                   NT_STATUS_V(nt_code)) {
+                       return nt_errs[idx].nt_errstr;
                }
                idx++;
        }
 
        slprintf(out, sizeof(out), "NT_STATUS(0x%08x)", NT_STATUS_V(nt_code));
 
-        return out;
+       return out;
 }
 
 /*****************************************************************************
@@ -904,11 +904,11 @@ const char *get_nt_error_c_code(NTSTATUS nt_code)
  *****************************************************************************/
 NTSTATUS nt_status_string_to_code(const char *nt_status_str)
 {
-        int idx = 0;
+       int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
                if (strcasecmp(nt_errs[idx].nt_errstr, nt_status_str) == 0) {
-                        return nt_errs[idx].nt_errcode;
+                       return nt_errs[idx].nt_errcode;
                }
                idx++;
        }