forgot 1 place that used slprintf
authorAndrew Tridgell <tridge@samba.org>
Mon, 7 May 2001 08:59:48 +0000 (08:59 +0000)
committerAndrew Tridgell <tridge@samba.org>
Mon, 7 May 2001 08:59:48 +0000 (08:59 +0000)
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;