From c17a3d4b7c74db1aaa916ca078b58bb2c4a28847 Mon Sep 17 00:00:00 2001
From: Tim Emiola <temiola@google.com>
Date: Tue, 24 Feb 2015 17:22:37 -0800
Subject: [PATCH] Fixes more go package references

---
 greeter_client/main.go | 2 +-
 greeter_server/main.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/greeter_client/main.go b/greeter_client/main.go
index abe33c0e..0ca5a000 100644
--- a/greeter_client/main.go
+++ b/greeter_client/main.go
@@ -37,7 +37,7 @@ import (
 	"log"
 	"os"
 
-	pb "github.com/grpc-common/go/helloworld"
+	pb "github.com/grpc/grpc-common/go/helloworld"
 	"golang.org/x/net/context"
 	"google.golang.org/grpc"
 )
diff --git a/greeter_server/main.go b/greeter_server/main.go
index 231f5c60..c7fa06ad 100644
--- a/greeter_server/main.go
+++ b/greeter_server/main.go
@@ -37,7 +37,7 @@ import (
 	"log"
 	"net"
 
-	pb "github.com/grpc-common/go/helloworld"
+	pb "github.com/grpc/grpc-common/go/helloworld"
 	"golang.org/x/net/context"
 	"google.golang.org/grpc"
 )