summaryrefslogtreecommitdiff
path: root/src/protocol/mpls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/mpls.rs')
-rw-r--r--src/protocol/mpls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/mpls.rs b/src/protocol/mpls.rs
index 2f441f9..fc3ee1d 100644
--- a/src/protocol/mpls.rs
+++ b/src/protocol/mpls.rs
@@ -111,7 +111,7 @@ mod tests {
// example
let mut payload = &bytes[..];
while let Ok((remain, header)) = MPLSHeader::decode(payload) {
- println!("return: {:?}, payload: {}", header, remain.len());
+ println!("OK: {:?}, payload: {}", header, remain.len());
payload = remain;
if header.bottom_of_stack {
break;