Commit 21eed96b authored by unknown's avatar unknown
Browse files

Merge mysql.com:/home/psergey/mysql-4.1-bug9228

into mysql.com:/home/psergey/mysql-5.0-bug10274-merge


sql/protocol.cc:
  Auto merged
parents d1d474c8 7ecca388
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -820,7 +820,7 @@ bool Protocol_simple::store_long(longlong from)
#endif
  char buff[20];
  return net_store_data((char*) buff,
			(uint) (int10_to_str((int)from,buff, (from <0)?-10:10)-buff));
			(uint) (int10_to_str((long int)from,buff, (from <0)?-10:10)-buff));
}