mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
i18n bugfix merge from appliance.
This commit is contained in:
parent
a25f6694d2
commit
73eb539da6
@ -1353,7 +1353,12 @@ static BOOL srv_spoolss_replyopenprinter(char *printer, uint32 localprinter, uin
|
||||
* and connect to the IPC$ share anonumously
|
||||
*/
|
||||
if (smb_connections==0) {
|
||||
if(!spoolss_connect_to_client(&cli, printer+2)) /* the +2 is to strip the leading 2 backslashs */
|
||||
fstring unix_printer;
|
||||
|
||||
fstrcpy(unix_printer, printer+2); /* the +2 is to strip the leading 2 backslashs */
|
||||
dos_to_unix(unix_printer, True);
|
||||
|
||||
if(!spoolss_connect_to_client(&cli, unix_printer))
|
||||
return False;
|
||||
message_register(MSG_PRINTER_NOTIFY, srv_spoolss_receive_message);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user