Raymond Toy pushed to branch issue-375-mkstemp-return-filename at cmucl / cmucl Commits: 144065ee by Raymond Toy at 2025-02-03T10:16:16-08:00 Fix typo in unix-mkdtemp We were returning from `unix-mkstemp` instead of `unix-mkdtemp`. - - - - - 1 changed file: - src/code/unix.lisp Changes: ===================================== src/code/unix.lisp ===================================== @@ -2957,7 +2957,7 @@ returned." ;; Make sure the template is valid. (unless (check-template template) - (return-from unix-mkstemp + (return-from unix-mkdtemp (values nil einval))) (let* ((format (if (eql *filename-encoding* :null) :iso8859-1 View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/144065ee00adb189d558dddd... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/144065ee00adb189d558dddd... You're receiving this email because of your account on gitlab.common-lisp.net.