summaryrefslogtreecommitdiff
path: root/src/lib/http/triv.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/http/triv.go')
-rw-r--r--src/lib/http/triv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http/triv.go b/src/lib/http/triv.go
index d2e074d73..f8b59ebea 100644
--- a/src/lib/http/triv.go
+++ b/src/lib/http/triv.go
@@ -74,7 +74,7 @@ func FlagServer(c *http.Conn, req *http.Request) {
// simple argument server
func ArgServer(c *http.Conn, req *http.Request) {
- for i, s := range sys.Args {
+ for i, s := range os.Args {
fmt.Fprint(c, s, " ");
}
}