diff options
author | Gerald Carter <jerry@samba.org> | 2002-06-27 18:10:56 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-06-27 18:10:56 +0000 |
commit | a9093a1b5819d74e6dc21c413dc84f8fd3f181dc (patch) | |
tree | 52ffa375215d830a733bddbd22dbfc6b460a43a3 /source3/printing | |
parent | 551a4cd89596b7f12d23a878d65361197b20a58f (diff) | |
download | samba-a9093a1b5819d74e6dc21c413dc84f8fd3f181dc.tar.gz samba-a9093a1b5819d74e6dc21c413dc84f8fd3f181dc.tar.bz2 samba-a9093a1b5819d74e6dc21c413dc84f8fd3f181dc.zip |
It's fairly obvious that no one has tried to upload a driver
to a Samba print server running HEAD in a while. This has been broken
since tridge's changes to make_connection() to not do the chdir()
to the connect_path. Sorry it took me so long to get around to fixing it.
The problem occured with our internal use of make_connection().
jerry
(This used to be commit b5bc8aa0f68ceebfb5c0ec15ff93b0172cec36d8)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 08d5ea430a..0ec960b3f0 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1064,7 +1064,7 @@ static uint32 get_correct_cversion(fstring architecture, fstring driverpath_in, /* Null password is ok - we are already an authenticated user... */ null_pw = data_blob(NULL, 0); become_root(); - conn = make_connection("print$", null_pw, "A:", user->vuid, &nt_status); + conn = make_connection_with_chdir("print$", null_pw, "A:", user->vuid, &nt_status); unbecome_root(); if (conn == NULL) { @@ -1382,7 +1382,7 @@ BOOL move_driver_to_download_area(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract, become_root(); null_pw = data_blob(NULL, 0); - conn = make_connection("print$", null_pw, "A:", user->vuid, &nt_status); + conn = make_connection_with_chdir("print$", null_pw, "A:", user->vuid, &nt_status); unbecome_root(); if (conn == NULL) { |