URI: 
       tConvert ID string using TOX_PUBLIC_KEY_SIZE - ratox - FIFO based tox client
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit bfc61ad1472843bb515394f95901c2d54889825f
   DIR parent 60d8ca29e1aa2be4261d51e0019e5f0615e2c238
  HTML Author: z3bra <contactatz3bradotorg>
       Date:   Tue,  8 Nov 2016 13:35:33 +0100
       
       Convert ID string using TOX_PUBLIC_KEY_SIZE
       
       Diffstat:
         M ratox.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/ratox.c b/ratox.c
       t@@ -1202,7 +1202,7 @@ id2str(uint8_t *id, char *idstr)
                int  i;
                char hex[] = "0123456789ABCDEF";
        
       -        for (i = 0; i < TOX_ADDRESS_SIZE; i++) {
       +        for (i = 0; i < TOX_PUBLIC_KEY_SIZE; i++) {
                        *idstr++ = hex[(id[i] >> 4) & 0xf];
                        *idstr++ = hex[id[i] & 0xf];
                }