mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Changed C++ style comment to C style for 'sql/net_serv.cc' which will be symlinked
to 'libmysql/net.c'. sql/net_serv.cc: Even though this is (by name) a C++ file, it is later symlinked to 'libmysql/net.c' and so the source will be treated as plain C: No C++ comments in here!
This commit is contained in:
@@ -227,7 +227,7 @@ int
|
||||
my_net_write(NET *net,const char *packet,ulong len)
|
||||
{
|
||||
uchar buff[NET_HEADER_SIZE];
|
||||
if (unlikely(!net->vio)) // nowhere to write
|
||||
if (unlikely(!net->vio)) /* nowhere to write */
|
||||
return 0;
|
||||
/*
|
||||
Big packets are handled by splitting them in packets of MAX_PACKET_LENGTH
|
||||
|
||||
Reference in New Issue
Block a user