svn commit: samba r3775 - in branches/SAMBA_3_0_RELEASE: . source/printing

jerry at samba.org jerry at samba.org
Mon Nov 15 21:54:50 GMT 2004


Author: jerry
Date: 2004-11-15 21:54:50 +0000 (Mon, 15 Nov 2004)
New Revision: 3775

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

Log:
missed one important change from 3.0; also update release notes some more
Modified:
   branches/SAMBA_3_0_RELEASE/WHATSNEW.txt
   branches/SAMBA_3_0_RELEASE/source/printing/nt_printing.c


Changeset:
Modified: branches/SAMBA_3_0_RELEASE/WHATSNEW.txt
===================================================================
--- branches/SAMBA_3_0_RELEASE/WHATSNEW.txt	2004-11-15 21:44:38 UTC (rev 3774)
+++ branches/SAMBA_3_0_RELEASE/WHATSNEW.txt	2004-11-15 21:54:50 UTC (rev 3775)
@@ -27,10 +27,59 @@
 -------
 
 o   Jeremy Allison <jra at samba.org>
+    * Correctly detect errno for no acl/ea support.
+    * BUG 2036: Fix seg fault in 'net ads join'.
 
+    
 o   Gerald (Jerry) Carter <jerry at samba.org>
+    * Solaris packaging fixes.
+    * Fix seg fault in lanman printing code.
+    * BUG 2017: fix testparm reporting for the passwd program 
+      string.
+    * Fix output of smbstatus to match the man page.
+    * BUG 2027: fix conflict with declaration MD5_CTX in system 
+      headers.
+    * 2028: Avoid false error messages when copying a long 
+      printer name to the device mode.
 
 
+o   Guenther Deschner <gd at samba.org> 
+    * Allow deldriverex in rpcclient to delete drivers for a 
+      specific architecture and a specific version.
+    * Fix a couple of rpcclient spoolss commands (setprinter, 
+      setprintername, getdriver) w.r.t to printer-naming scheme.
+      Allow 'localhost' in the server string for certain server-side
+      spoolss functions.
+    * BUG 2015: Do not fail on setting file attributes with 
+      acl support enabled.
+
+
+o   Michel Gravey <michel.gravey at optogone.com>
+    * Fix build when using gcc 3.0.
+
+
+o   Volker Lendecke <vl at samba.org>
+    * Fix tdb open logic when checking our local_pid after 
+      the fork().
+
+
+o   Jim McDonough <jmcd at us.ibm.com>
+    * BUG 1932: Fix crash in 'net getlocalsid' when run as 
+      non-root user.
+
+
+o   Luke Mewburn <lukem at NetBSD.org>
+    BUG 1661: Fix KRB5_SETPW-defines
+
+
+o   Lars Müller <lmuelle at suse.de>
+    * BUG 2013: Fix unresolved symbols in libsmbclient.so.
+
+
+o   Martin Zielinski <mz at seh.de>
+    * Add DeletePrinterDriverEx() functionality to rpcclient.
+    
+
 Changes for older versions follow below:
 
       --------------------------------------------------

Modified: branches/SAMBA_3_0_RELEASE/source/printing/nt_printing.c
===================================================================
--- branches/SAMBA_3_0_RELEASE/source/printing/nt_printing.c	2004-11-15 21:44:38 UTC (rev 3774)
+++ branches/SAMBA_3_0_RELEASE/source/printing/nt_printing.c	2004-11-15 21:54:50 UTC (rev 3775)
@@ -3428,7 +3428,7 @@
 		info.devmode = construct_nt_devicemode(printername);
 	}
 
-	safe_strcpy(adevice, info.printername, sizeof(adevice)-1);
+	slprintf( adevice, sizeof(adevice), "%s", info.printername );
 	if (info.devmode) {
 		fstrcpy(info.devmode->devicename, adevice);	
 	}



More information about the samba-cvs mailing list