diff --git a/pom.xml b/pom.xml
index 908f63f..15006be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
pe.pi
sctp4j
- 1.0.6-SNAPSHOT
+ 1.0.6
jar
sctp4j
@@ -65,7 +65,7 @@
com.phono
srtplight
- 1.1.10
+ 1.1.11
diff --git a/src/main/java/pe/pi/sctp4j/sctp/dataChannel/DECP/DCOpen.java b/src/main/java/pe/pi/sctp4j/sctp/dataChannel/DECP/DCOpen.java
index cdfae2f..542e22c 100644
--- a/src/main/java/pe/pi/sctp4j/sctp/dataChannel/DECP/DCOpen.java
+++ b/src/main/java/pe/pi/sctp4j/sctp/dataChannel/DECP/DCOpen.java
@@ -184,7 +184,7 @@ public boolean isAck() {
}
public SCTPStreamBehaviour mkStreamBehaviour() {
- Log.debug("Making a behaviour for dcep stream " + _label);
+ Log.debug("Making a behaviour for dcep stream " + new String(_label));
SCTPStreamBehaviour behave = null;
switch (_chanType) {
case RELIABLE:
@@ -205,7 +205,7 @@ public SCTPStreamBehaviour mkStreamBehaviour() {
break;
}
if (behave != null) {
- Log.debug(_label + " behaviour is " + behave.getClass().getSimpleName());
+ Log.debug(new String(_label) + " behaviour is " + behave.getClass().getSimpleName());
}
return behave;