ref/cmd/principal: using https://dev.v.io/auth instead of
https://auth.dev.v.io:8125 as the default

Change-Id: I998984e49ba8d1753194e5f4c3e6746f33c5f92f
diff --git a/cmd/principal/doc.go b/cmd/principal/doc.go
index d857e50..198cd31 100644
--- a/cmd/principal/doc.go
+++ b/cmd/principal/doc.go
@@ -151,7 +151,7 @@
  -for_peer=...
    If non-empty, the blessings obtained will be marked for peers matching this
    pattern in the store
- -from=https://auth.dev.v.io:8125/google
+ -from=https://dev.v.io/auth/google
    URL to use to begin the seek blessings process
  -set_default=true
    If true, the blessings obtained will be set as the default blessing in the
diff --git a/cmd/principal/main.go b/cmd/principal/main.go
index 3f18568..41187ca 100644
--- a/cmd/principal/main.go
+++ b/cmd/principal/main.go
@@ -707,7 +707,7 @@
 	cmdBless.Flags.StringVar(&flagBlessRemoteKey, "remote_key", "", "Public key of the remote principal to bless (obtained from the 'recvblessings' command run by the remote principal")
 	cmdBless.Flags.StringVar(&flagBlessRemoteToken, "remote_token", "", "Token provided by principal running the 'recvblessings' command")
 
-	cmdSeekBlessings.Flags.StringVar(&flagSeekBlessingsFrom, "from", "https://auth.dev.v.io:8125/google", "URL to use to begin the seek blessings process")
+	cmdSeekBlessings.Flags.StringVar(&flagSeekBlessingsFrom, "from", "https://dev.v.io/auth/google", "URL to use to begin the seek blessings process")
 	cmdSeekBlessings.Flags.BoolVar(&flagSeekBlessingsSetDefault, "set_default", true, "If true, the blessings obtained will be set as the default blessing in the store")
 	cmdSeekBlessings.Flags.StringVar(&flagSeekBlessingsForPeer, "for_peer", string(security.AllPrincipals), "If non-empty, the blessings obtained will be marked for peers matching this pattern in the store")
 	cmdSeekBlessings.Flags.BoolVar(&flagSeekBlessingsBrowser, "browser", true, "If false, the seekblessings command will not open the browser and only print the url to visit.")