From a151f019fe3a4de4a20ddf5099829f93906980d6 Mon Sep 17 00:00:00 2001 From: Burcu Dogan Date: Mon, 25 Jan 2016 14:52:08 -0800 Subject: [PATCH] containerd: do not export any symbols Following up with #87. Signed-off-by: Burcu Dogan --- containerd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containerd/main.go b/containerd/main.go index 6b2d64008..569813bd4 100644 --- a/containerd/main.go +++ b/containerd/main.go @@ -24,7 +24,7 @@ import ( ) const ( - Usage = `High performance container daemon` + usage = `High performance container daemon` minRlimit = 1024 ) @@ -79,7 +79,7 @@ func main() { app := cli.NewApp() app.Name = "containerd" app.Version = containerd.Version - app.Usage = Usage + app.Usage = usage app.Authors = authors app.Flags = daemonFlags app.Before = func(context *cli.Context) error {