Skip to content
Snippets Groups Projects
Commit 6cfefb96 authored by ram's avatar ram
Browse files

Changed ~A to ~D when formatting socket file in case the base isn't 10.

parent 2b49ac1a
No related branches found
No related tags found
No related merge requests found
...@@ -67,8 +67,8 @@ ...@@ -67,8 +67,8 @@
(handler-case (handler-case
(ext::connect-to-unix-socket (ext::connect-to-unix-socket
(if pid (if pid
(format nil "/tmp/.motif_socket-p~a" pid) (format nil "/tmp/.motif_socket-p~D" pid)
(format nil "/tmp/.motif_socket-u~a" (unix:unix-getuid)))) (format nil "/tmp/.motif_socket-u~D" (unix:unix-getuid))))
(error () (error ()
(ext:connect-to-unix-socket "/tmp/.motif_socket")))) (ext:connect-to-unix-socket "/tmp/.motif_socket"))))
(error () (error ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment