send the actual passed cmd in sendServer

This commit is contained in:
Gokcehan 2016-11-18 23:38:38 +03:00
parent 4e1f1601fe
commit fdf8e9d480

View File

@ -152,7 +152,7 @@ func sendServer(cmd string) error {
}
defer c.Close()
fmt.Fprintln(c, "send sync")
fmt.Fprintln(c, cmd)
return nil
}