aboutsummaryrefslogtreecommitdiff
path: root/connection_streams_controller.go
diff options
context:
space:
mode:
authorEmiliano Ciavatta2020-10-16 13:09:05 +0000
committerEmiliano Ciavatta2020-10-16 13:09:05 +0000
commit5534413b3a3e6e783310be8147ac8340d3098a7e (patch)
tree395428b5f156855764297542ae0e395b1d157aca /connection_streams_controller.go
parentd4bac2d6741f7a291522c29c9ecc87c3e32e21d4 (diff)
Fix tests. General refactor
Diffstat (limited to 'connection_streams_controller.go')
-rw-r--r--connection_streams_controller.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/connection_streams_controller.go b/connection_streams_controller.go
index eef1a2a..038c2c5 100644
--- a/connection_streams_controller.go
+++ b/connection_streams_controller.go
@@ -369,7 +369,7 @@ func decodePwntools(payload []byte, isClient bool, format string) string {
if isClient {
return fmt.Sprintf("p.send(%s)\n", content)
- } else {
- return fmt.Sprintf("p.recvuntil(%s)\n", content)
}
+
+ return fmt.Sprintf("p.recvuntil(%s)\n", content)
}