summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/stupidgcm/without_openssl.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/stupidgcm/without_openssl.go b/internal/stupidgcm/without_openssl.go
index 406168c..18c5ddc 100644
--- a/internal/stupidgcm/without_openssl.go
+++ b/internal/stupidgcm/without_openssl.go
@@ -3,9 +3,8 @@
package stupidgcm
import (
+ "fmt"
"os"
-
- "github.com/rfjakob/gocryptfs/internal/tlog"
)
type stupidGCM struct{}
@@ -16,7 +15,7 @@ const (
)
func errExit() {
- tlog.Fatal.Println("gocryptfs has been compiled without openssl support but you are still trying to use openssl")
+ fmt.Fprintln(os.Stderr, "gocryptfs has been compiled without openssl support but you are still trying to use openssl")
os.Exit(2)
}