From f8a3b1e16494bec2d26ede6561e29fdd6fb62b3d Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Mon, 16 Jan 2017 01:48:34 -0800 Subject: [PATCH] Fix a bug in previous patch. --- cmd/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/main.go b/cmd/main.go index 4864b7c7b..bb2a47a71 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -165,12 +165,12 @@ func checkUpdate() { // Generic Minio initialization to create/load config, prepare loggers, etc.. func minioInit(ctx *cli.Context) { - // Sets new config directory. - setGlobalConfigPath(globalConfigDir) - // Set global variables after parsing passed arguments setGlobalsFromContext(ctx) + // Sets new config directory. + setGlobalConfigPath(globalConfigDir) + // Is TLS configured?. globalIsSSL = isSSL()