Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 19:37:10 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 19:37:10 +0300
commit9747e5820ce129895e95355b254d110cb39496a4 (patch)
tree15de284bad0b0344738dcfe7fe57596825e2b661 /daemon.go
parenta9b41da7fc5a07eae0a72dc7e59f323a73e74a54 (diff)
Fix small bugs
Diffstat (limited to 'daemon.go')
-rw-r--r--daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon.go b/daemon.go
index 50e57a6c..de6ce4a3 100644
--- a/daemon.go
+++ b/daemon.go
@@ -199,7 +199,7 @@ func daemonize(config appConfig, uid, gid uint) {
// Create a new file and store the FD
daemonUpdateFd(cmd, &config.ListenHTTP)
daemonUpdateFd(cmd, &config.ListenHTTPS)
- daemonUpdateFd(cmd, &config.listenProxy)
+ daemonUpdateFd(cmd, &config.ListenProxy)
// Start the process
if err = cmd.Start(); err != nil {