1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixed typos from prev changeset

mysql-test/r/select.result:
  Fixed
sql/net_pkg.cc:
  Fixed typo
This commit is contained in:
unknown
2001-01-21 16:59:02 +02:00
parent ea5451ff79
commit 28eac2d0ae
2 changed files with 2 additions and 3 deletions

View File

@@ -1768,7 +1768,6 @@ summa
Nuvarande period Nuvarande period
9410 9410
Tables_in_test Tables_in_test
m
t1 t1
t2 t2
t3 t3

View File

@@ -349,7 +349,7 @@ net_store_data(String *packet,CONVERT *convert, const char *from,uint length)
{ {
if (convert) if (convert)
return convert->store(packet, from, length); return convert->store(packet, from, length);
return net_store_date(packet,from,length); return net_store_data(packet,from,length);
} }
bool bool
@@ -358,5 +358,5 @@ net_store_data(String *packet, CONVERT *convert, const char *from)
uint length=(uint) strlen(from); uint length=(uint) strlen(from);
if (convert) if (convert)
return convert->store(packet, from, length); return convert->store(packet, from, length);
return net_store_date(packet,from,length); return net_store_data(packet,from,length);
} }