diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-12 18:57:09 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-12 18:57:09 -0800 |
commit | 6ced95fb32cc22ca55d169944c8cb3f31f01dd4c (patch) | |
tree | b3b2ceaca826e46e0f25bc8897b9b64da4acdb51 /auth.txr | |
parent | ed89f984bd2e4f0b909dd640563ac44614f6194c (diff) | |
download | tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.tar.gz tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.tar.bz2 tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.zip |
Move sasl socket path to configuration.tamarind-1
Diffstat (limited to 'auth.txr')
-rw-r--r-- | auth.txr | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ (defun sasl-auth (user pass) (let ((sock (open-socket af-unix sock-stream))) - (sock-connect sock (new sockaddr-un path "/var/run/saslauthd/mux")) + (sock-connect sock (new sockaddr-un path sasl-sock)) (put-binary-str user sock) (put-binary-str pass sock) (put-binary-str "" sock) |