r13523: Fix indent.
authorGünther Deschner <gd@samba.org>
Thu, 16 Feb 2006 15:51:04 +0000 (15:51 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:10:09 +0000 (11:10 -0500)
Guenther

source/rpcclient/cmd_samr.c

index 7f35db5b8d84d9e4ffdf43a34b84ee0e27f9eafb..13da71a7fd9bff8906a581abfdf46f23b384583a 100644 (file)
@@ -151,25 +151,25 @@ static const char *display_time(NTTIME nttime)
 
 static void display_password_properties(uint32 password_properties) 
 {
-               printf("password_properties: 0x%08x\n", password_properties);
+       printf("password_properties: 0x%08x\n", password_properties);
                
-               if (password_properties & DOMAIN_PASSWORD_COMPLEX)
-                       printf("\tDOMAIN_PASSWORD_COMPLEX\n");
+       if (password_properties & DOMAIN_PASSWORD_COMPLEX)
+               printf("\tDOMAIN_PASSWORD_COMPLEX\n");
                        
-               if (password_properties & DOMAIN_PASSWORD_NO_ANON_CHANGE)
-                       printf("\tDOMAIN_PASSWORD_NO_ANON_CHANGE\n");
+       if (password_properties & DOMAIN_PASSWORD_NO_ANON_CHANGE)
+               printf("\tDOMAIN_PASSWORD_NO_ANON_CHANGE\n");
                        
-               if (password_properties & DOMAIN_PASSWORD_NO_CLEAR_CHANGE)
-                       printf("\tDOMAIN_PASSWORD_NO_CLEAR_CHANGE\n");
+       if (password_properties & DOMAIN_PASSWORD_NO_CLEAR_CHANGE)
+               printf("\tDOMAIN_PASSWORD_NO_CLEAR_CHANGE\n");
                        
-               if (password_properties & DOMAIN_LOCKOUT_ADMINS)
-                       printf("\tDOMAIN_LOCKOUT_ADMINS\n");
+       if (password_properties & DOMAIN_LOCKOUT_ADMINS)
+               printf("\tDOMAIN_LOCKOUT_ADMINS\n");
                        
-               if (password_properties & DOMAIN_PASSWORD_STORE_CLEARTEXT)
-                       printf("\tDOMAIN_PASSWORD_STORE_CLEARTEXT\n");
+       if (password_properties & DOMAIN_PASSWORD_STORE_CLEARTEXT)
+               printf("\tDOMAIN_PASSWORD_STORE_CLEARTEXT\n");
                        
-               if (password_properties & DOMAIN_REFUSE_PASSWORD_CHANGE)
-                       printf("\tDOMAIN_REFUSE_PASSWORD_CHANGE\n");
+       if (password_properties & DOMAIN_REFUSE_PASSWORD_CHANGE)
+               printf("\tDOMAIN_REFUSE_PASSWORD_CHANGE\n");
 }
 
 static void display_sam_unk_info_1(SAM_UNK_INFO_1 *info1)