Revert "Remove extra trailing zero"

This commit is contained in:
Varriount
2014-11-01 17:52:00 -04:00
parent 2e53e6354c
commit cbe733afa2

View File

@@ -52,9 +52,10 @@ proc oidToString*(oid: Oid, str: cstring) =
str[2 * i] = hex[(b and 0xF0) shr 4]
str[2 * i + 1] = hex[b and 0xF]
inc(i)
str[24] = '\0'
proc `$`*(oid: Oid): string =
result = newString(24)
result = newString(25)
oidToString(oid, result)
var