summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-02-03 15:28:10 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-02-03 15:28:10 (GMT)
commit8c0f17ae872f5ccff6f6b827aad81077e2db397b (patch)
tree9507e49e41cb3a521189f5579b628b26d6232526
parent294c7570f6486082f5836432eb36c78037c1f812 (diff)
fixed some names after renaming the project to rhlibrary
-rw-r--r--src/rhlibrary/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rhlibrary/main.go b/src/rhlibrary/main.go
index b40ce9a..8221091 100644
--- a/src/rhlibrary/main.go
+++ b/src/rhlibrary/main.go
@@ -42,7 +42,7 @@ var (
)
func init() {
- // if _, exists := os.LookupEnv("RHRDLIBRARY_DEBUG"); exists {
+ // if _, exists := os.LookupEnv("RHLIBRARY_DEBUG"); exists {
rhdl.SetOutput(os.Stderr)
// }
}
@@ -67,8 +67,8 @@ func (s *envStringValue) Get() interface{} { return string(*s) }
func (s *envStringValue) String() string { return fmt.Sprintf("%s", *s) }
func main() {
- rdconf := newEnvStringValue("RHRDLIBRARY_RD_CONF", "/etc/rd.conf")
- flag.Var(rdconf, "rdconf", "path to the Rivendell config file (environment: RHRDLIBRARY_RD_CONF)")
+ rdconf := newEnvStringValue("RHLIBRARY_RD_CONF", "/etc/rd.conf")
+ flag.Var(rdconf, "rdconf", "path to the Rivendell config file (environment: RHLIBRARY_RD_CONF)")
help := flag.Bool("help", false, "show usage")
flag.Parse()