summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-01-03 10:32:45 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-01-03 10:32:45 +0100
commit57f60dc62efaa2595cdeb184f364fd557d088232 (patch)
tree46e45a2ca43a1ed3f7904a71cce2599f0d40bd41
parent8c9f44d21e6a3e9f011e84a6bac4c055684d03d0 (diff)
downloaddeployment-57f60dc62efaa2595cdeb184f364fd557d088232.tar.gz
deployment-57f60dc62efaa2595cdeb184f364fd557d088232.tar.bz2
deployment-57f60dc62efaa2595cdeb184f364fd557d088232.zip
typo
-rw-r--r--guix/fixed-fcgiwrap.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/fixed-fcgiwrap.scm b/guix/fixed-fcgiwrap.scm
index f482d57..cb7288b 100644
--- a/guix/fixed-fcgiwrap.scm
+++ b/guix/fixed-fcgiwrap.scm
@@ -95,10 +95,10 @@
(#f 0)))
(define (ensure-socket-dir dir user group)
(unless (file-exists? dir)
- (mkdir file) ; FIXME: use mkdir-p instead?
+ (mkdir dir) ; FIXME: use mkdir-p instead?
(let ((uid (passwd:uid (getpwnam user)))
(gid (group:gid (getgrnam group))))
- (chown file uid gid))))
+ (chown dir uid gid))))
(define start-fcgiwrap
(make-forkexec-constructor
'(#$(file-append package "/sbin/fcgiwrap")