Commit 2351bbfd authored by Tobias Klauser's avatar Tobias Klauser Committed by Ian Lance Taylor

syscall: fix definition of _AT_FDCWD on dragonfly

CL golang.org/cl/55130 messed up the definition of _AT_FDCWD on
dragonfly.

This fixes the following test failure on dragonfly/amd64:

  --- FAIL: TestPackageMainTestImportsArchiveNotBinary (0.00s)
  	  go_test.go:192: chtimes ./testdata/src/main_test/m.go: bad file descriptor

Change-Id: I4c96983769e6b02d714859dc838875c3c0f1be50
Reviewed-on: https://go-review.googlesource.com/55690
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 6e8b1039
...@@ -433,7 +433,7 @@ type BpfHdr struct { ...@@ -433,7 +433,7 @@ type BpfHdr struct {
} }
const ( const (
_AT_FDCWD = -0x64 _AT_FDCWD = 0xfffafdcd
) )
type Termios struct { type Termios struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment