~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/mysqld.cc

Removed my_vsnprintf and my_snprintf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1151
1151
    hints.ai_socktype= SOCK_STREAM;
1152
1152
    hints.ai_family= AF_UNSPEC;
1153
1153
 
1154
 
    my_snprintf(port_buf, NI_MAXSERV, "%d", mysqld_port);
 
1154
    snprintf(port_buf, NI_MAXSERV, "%d", mysqld_port);
1155
1155
    error= getaddrinfo(my_bind_addr_str, port_buf, &hints, &ai);
1156
1156
    if (error != 0)
1157
1157
    {