We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1104d96 commit 7a452d2Copy full SHA for 7a452d2
nshandle_linux.go
@@ -30,7 +30,7 @@ func (ns NsHandle) Equal(other NsHandle) bool {
30
// String shows the file descriptor number and its dev and inode.
31
func (ns NsHandle) String() string {
32
if ns == -1 {
33
- return "NS(None)"
+ return "NS(none)"
34
}
35
var s unix.Stat_t
36
if err := unix.Fstat(int(ns), &s); err != nil {
nshandle_others.go
@@ -17,7 +17,7 @@ func (ns NsHandle) Equal(_ NsHandle) bool {
17
// It is only implemented on Linux, and returns "NS(none)" on other
18
// platforms.
19
20
21
22
23
// UniqueId returns a string which uniquely identifies the namespace
0 commit comments