svn commit: samba r5562 - in branches/SAMBA_3_0/source: . auth

jerry at samba.org jerry at samba.org
Fri Feb 25 15:56:13 GMT 2005


Author: jerry
Date: 2005-02-25 15:56:13 +0000 (Fri, 25 Feb 2005)
New Revision: 5562

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

Log:
* bump version to 3.0.12pre2
* change special character in gd's valid workstation 
  check to a '+' to be more in line with the characters
  used by valid users



Modified:
   branches/SAMBA_3_0/source/VERSION
   branches/SAMBA_3_0/source/auth/auth_sam.c


Changeset:
Modified: branches/SAMBA_3_0/source/VERSION
===================================================================
--- branches/SAMBA_3_0/source/VERSION	2005-02-25 15:23:33 UTC (rev 5561)
+++ branches/SAMBA_3_0/source/VERSION	2005-02-25 15:56:13 UTC (rev 5562)
@@ -29,7 +29,7 @@
 # e.g. SAMBA_VERSION_PRE_RELEASE=1                     #
 #  ->  "2.2.9pre1"                                     #
 ########################################################
-SAMBA_VERSION_PRE_RELEASE=1
+SAMBA_VERSION_PRE_RELEASE=2
 
 ########################################################
 # For 'rc' releases the version will be                #

Modified: branches/SAMBA_3_0/source/auth/auth_sam.c
===================================================================
--- branches/SAMBA_3_0/source/auth/auth_sam.c	2005-02-25 15:23:33 UTC (rev 5561)
+++ branches/SAMBA_3_0/source/auth/auth_sam.c	2005-02-25 15:56:13 UTC (rev 5562)
@@ -185,7 +185,7 @@
 				invalid_ws = False;
 				break;
 			}
-			if (tok[0] == '@') {
+			if (tok[0] == '+') {
 				DEBUG(10,("sam_account_ok: checking for workstation %s in group: %s\n", 
 					machine_name, tok + 1));
 				if (user_in_group_list(machine_name, tok + 1, NULL, 0)) {



More information about the samba-cvs mailing list