r3775: missed one important change from 3.0; also update release notes some more
authorGerald Carter <jerry@samba.org>
Mon, 15 Nov 2004 21:54:50 +0000 (21:54 +0000)
committerGerald Carter <jerry@samba.org>
Mon, 15 Nov 2004 21:54:50 +0000 (21:54 +0000)
WHATSNEW.txt
source/printing/nt_printing.c

index 55aa893923e084056fc4e97ab7c062f3d335377c..052b8237f48c0cc10bd39ce56fe609cfd634070e 100644 (file)
@@ -27,10 +27,59 @@ commits
 -------
 
 o   Jeremy Allison <jra@samba.org>
+    * Correctly detect errno for no acl/ea support.
+    * BUG 2036: Fix seg fault in 'net ads join'.
 
+    
 o   Gerald (Jerry) Carter <jerry@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@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@optogone.com>
+    * Fix build when using gcc 3.0.
+
+
+o   Volker Lendecke <vl@samba.org>
+    * Fix tdb open logic when checking our local_pid after 
+      the fork().
 
 
+o   Jim McDonough <jmcd@us.ibm.com>
+    * BUG 1932: Fix crash in 'net getlocalsid' when run as 
+      non-root user.
+
+
+o   Luke Mewburn <lukem@NetBSD.org>
+    BUG 1661: Fix KRB5_SETPW-defines
+
+
+o   Lars Müller <lmuelle@suse.de>
+    * BUG 2013: Fix unresolved symbols in libsmbclient.so.
+
+
+o   Martin Zielinski <mz@seh.de>
+    * Add DeletePrinterDriverEx() functionality to rpcclient.
+    
+
 Changes for older versions follow below:
 
       --------------------------------------------------
index 3ff2d517336d24ef59b9d14eae3281d991fc1a13..6ab8b76f144cb92bbed8b4987351503b365401dd 100644 (file)
@@ -3428,7 +3428,7 @@ static WERROR get_a_printer_2(NT_PRINTER_INFO_LEVEL_2 **info_ptr, const char *se
                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);     
        }