forgot 1 place that used slprintf
[rsync/rsync.git] / lib / compat.c
index 426eee2..e84da83 100644 (file)
        unsigned char *p = (unsigned char *)&ip.s_addr;
        static char buf[18];
 #if WORDS_BIGENDIAN
-       slprintf(buf, 18, "%d.%d.%d.%d", 
+       snprintf(buf, 18, "%d.%d.%d.%d", 
                 (int)p[0], (int)p[1], (int)p[2], (int)p[3]);
 #else
-       slprintf(buf, 18, "%d.%d.%d.%d", 
+       snprintf(buf, 18, "%d.%d.%d.%d", 
                 (int)p[3], (int)p[2], (int)p[1], (int)p[0]);
 #endif
        return buf;