svn commit: samba r14494 - in branches/SAMBA_4_0/source/auth: .

abartlet at samba.org abartlet at samba.org
Thu Mar 16 22:31:02 GMT 2006


Author: abartlet
Date: 2006-03-16 22:31:01 +0000 (Thu, 16 Mar 2006)
New Revision: 14494

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14494

Log:
Add comments to clarify that we deliberatly fall though here

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/auth/auth_util.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/auth_util.c
===================================================================
--- branches/SAMBA_4_0/source/auth/auth_util.c	2006-03-16 22:17:03 UTC (rev 14493)
+++ branches/SAMBA_4_0/source/auth/auth_util.c	2006-03-16 22:31:01 UTC (rev 14494)
@@ -28,7 +28,7 @@
 #include "libcli/auth/libcli_auth.h"
 
 /* this default function can be used by mostly all backends
- * which don't want to set a challlenge
+ * which don't want to set a challenge
  */
 NTSTATUS auth_get_challenge_not_implemented(struct auth_method_context *ctx, TALLOC_CTX *mem_ctx, DATA_BLOB *challenge)
 {
@@ -116,6 +116,7 @@
 				return nt_status;
 			}
 			user_info_in = user_info_temp2;
+			/* fall though */
 		}
 		case AUTH_PASSWORD_HASH:
 		{
@@ -171,6 +172,7 @@
 			}
 
 			user_info_in = user_info_temp;
+			/* fall though */
 		}
 		case AUTH_PASSWORD_RESPONSE:
 			*user_info_encrypted = user_info_in;
@@ -206,6 +208,7 @@
 			*user_info_temp->password.hash.nt = nt;
 			
 			user_info_in = user_info_temp;
+			/* fall though */
 		}
 		case AUTH_PASSWORD_HASH:
 			*user_info_encrypted = user_info_in;



More information about the samba-cvs mailing list