Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from fdawg4l/imports
Browse files Browse the repository at this point in the history
Fix import paths
  • Loading branch information
dougm authored May 25, 2017
2 parents f4480e3 + cafd6e4 commit 492894f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions nfs/example/test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"os"
"strings"

"github.com/fdawg4l/go-nfs-client/nfs"
"github.com/fdawg4l/go-nfs-client/nfs/rpc"
"github.com/fdawg4l/go-nfs-client/nfs/util"
"github.com/vmware/go-nfs-client/nfs"
"github.com/vmware/go-nfs-client/nfs/rpc"
"github.com/vmware/go-nfs-client/nfs/util"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions nfs/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"io"
"os"

"github.com/fdawg4l/go-nfs-client/nfs/rpc"
"github.com/fdawg4l/go-nfs-client/nfs/util"
"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/rpc"
"github.com/vmware/go-nfs-client/nfs/util"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

// File wraps the NfsProc3Read and NfsProc3Write methods to implement a
Expand Down
4 changes: 2 additions & 2 deletions nfs/mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"errors"
"fmt"

"github.com/fdawg4l/go-nfs-client/nfs/rpc"
"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/rpc"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions nfs/nfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"syscall"
"time"

"github.com/fdawg4l/go-nfs-client/nfs/rpc"
"github.com/fdawg4l/go-nfs-client/nfs/util"
"github.com/vmware/go-nfs-client/nfs/rpc"
"github.com/vmware/go-nfs-client/nfs/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion nfs/rpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"sync/atomic"
"time"

"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion nfs/rpc/portmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package rpc
import (
"fmt"

"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

// PORTMAP
Expand Down
2 changes: 1 addition & 1 deletion nfs/rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"math/rand"
"time"

"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

type Auth struct {
Expand Down
6 changes: 3 additions & 3 deletions nfs/target.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"path/filepath"
"strings"

"github.com/fdawg4l/go-nfs-client/nfs/rpc"
"github.com/fdawg4l/go-nfs-client/nfs/util"
"github.com/fdawg4l/go-nfs-client/nfs/xdr"
"github.com/vmware/go-nfs-client/nfs/rpc"
"github.com/vmware/go-nfs-client/nfs/util"
"github.com/vmware/go-nfs-client/nfs/xdr"
)

type Target struct {
Expand Down
2 changes: 1 addition & 1 deletion nfs/xdr/decode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"encoding/binary"
"testing"

"github.com/fdawg4l/go-nfs-client/nfs/util"
"github.com/vmware/go-nfs-client/nfs/util"
)

func TestRead(t *testing.T) {
Expand Down

0 comments on commit 492894f

Please sign in to comment.