]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-smb.el (tramp-smb-conf): New defcustom.
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 23 Jan 2010 11:02:28 +0000 (12:02 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 23 Jan 2010 11:02:28 +0000 (12:02 +0100)
(tramp-smb-maybe-open-connection): Use it.

lisp/ChangeLog
lisp/net/tramp-smb.el

index 65e171c13819110f57e9accd03adbbcd7f89f104..a1871e5967777b7493af53fdb9cd5e67893b8b88 100644 (file)
@@ -1,6 +1,11 @@
+2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-smb.el (tramp-smb-conf): New defcustom.
+       (tramp-smb-maybe-open-connection): Use it.
+
 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
 
-       * net/tramp-imap.el (top): Autoload needed packages.
+       * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
 
 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index 9d176a1fd3cec47b8c557bc27511867e0d16c4c4..e9051f0a4354ea0125944cc27ca89bc841a87829 100644 (file)
   :group 'tramp
   :type 'string)
 
+(defcustom tramp-smb-conf "/dev/null"
+  "*Path of the smb.conf file.
+If it is nil, no smb.conf will be added to the `tramp-smb-program'
+call, letting the SMB client use the default one."
+  :group 'tramp
+  :type '(choice (const nil) (file :must-match t)))
+
 (defvar tramp-smb-version nil
   "*Version string of the SMB client.")
 
@@ -1281,7 +1288,8 @@ connection if a previous connection has died for some reason."
 
          (when domain (setq args (append args (list "-W" domain))))
          (when port   (setq args (append args (list "-p" port))))
-         (setq args (append args (list "-s" "/dev/null")))
+         (when tramp-smb-conf
+           (setq args (append args (list "-s" tramp-smb-conf))))
 
          ;; OK, let's go.
          (tramp-message