Skip to content

Fix remaining typos #3992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Tick one of the following boxes [x] to help us understand if the base branch for
- [ ] *This is a bug fix, and the PR is based against the earliest maintained branch in which the bug can be reproduced.*

<!--
All code merged into the MariaDB codebase must meet a quality standard and codying style.
All code merged into the MariaDB codebase must meet a quality standard and coding style.
Maintainers are happy to point out inconsistencies but in order to speed up the review and merge process we ask you to check the CODING standards.
-->
## PR quality check
Expand Down
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# This Gitlab-CI pipeline offers basic validation that a commit did not
# introduce easily detectable regressions. Builds run primairly on a new Fedora,
# introduce easily detectable regressions. Builds run primarily on a new Fedora,
# which has all the latest upstream build dependencies and thus is the primary
# testing target, as eventually everything in Fedora becomes the next CentOS and
# Red Hat releases.
Expand Down Expand Up @@ -315,7 +315,7 @@ mysql-test-run:
#
# Additionally, for each sanitizer MTR job, we enable --force-restart so that
# sanitizer errors can be traced to individual tests. The difference in test
# suite runtime as a result of this flag is negligable (~30s for the entire test suite).
# suite runtime as a result of this flag is negligible (~30s for the entire test suite).
# (see https://dev.mysql.com/doc/dev/mysql-server/latest/PAGE_MYSQL_TEST_RUN_PL.html)
mysql-test-run-asan:
stage: test
Expand Down
2 changes: 1 addition & 1 deletion BUILD-CMAKE
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ is in <build-root>/sql/CMakeFiles/mysqld.dir/link.txt
feature because tests do not rerun when reconfiguring (e.g when a new test was
added).The downside of caching is that when a platform test was wrong and was
later corrected, the cached result is still used. If you encounter this
situation, which should be a rare occation, you need either to remove the
situation, which should be a rare occasion, you need either to remove the
offending entry from CMakeCache.txt (if test was for HAVE_FOO, remove lines
containing HAVE_FOO from CMakeCache.txt) or just remove the cache file.

2 changes: 1 addition & 1 deletion BUILD/compile-pentium64-ubsan
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA

# Compilation with UBSAN, The Undefined Behavior Sanitizer
# We have to use -Wno-uninitialized and -Wno-unitialized we get a lot of false
# We have to use -Wno-uninitialized and we get a lot of false
# positive warnings for this when compiling with -fsanitize=undefined.
# We also have to compile without Spider as linking with Spider library does
# not work. (errno: 11, undefined symbol: _ZTI12ha_partition)
Expand Down
2 changes: 1 addition & 1 deletion CODING_STANDARDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ MDEV-12345 Fixing Rockwell Turbo Encabulator

The new principle involved is that instead of power being generated by
the relative motion of conductors and fluxes, it’s produced by the
modial interaction of magneto-reluctance and capacitive diractance.
modial interaction of magneto-reluctance and capacitive directance.
```

The only explicitly allowed exception to the 50-72 rules is that if the first line can be MDEV-###### title', even if the title would make the line longer than 50 characters.
Expand Down
2 changes: 1 addition & 1 deletion Docs/myisam.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ The function parameter can be:
HA_EXTRA_NORMAL=0 Optimize for space (def)
HA_EXTRA_QUICK=1 Optimize for speed
HA_EXTRA_RESET=2 Reset database to after open
HA_EXTRA_CACHE=3 Cash record in HA_rrnd()
HA_EXTRA_CACHE=3 Cache record in HA_rrnd()
HA_EXTRA_NO_CACHE=4 End caching of records (def)
HA_EXTRA_NO_READCHECK=5 No readcheck on update
HA_EXTRA_READCHECK=6 Use readcheck (def)
Expand Down
8 changes: 4 additions & 4 deletions Docs/optimizer_costs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ MariaDB [test]> select sum(1) from seq_1_to_100000000;
1 row in set (5.162 sec)

Time of where= (8.564-5.162)/100000000 = 3.402/100000000 (100,000,000)
(Result good enough, as sligthly different computations)
(Result is good enough for slightly different computations)

check_costs.pl comes provides the numbers when using heap tables and 1M rows:

Expand Down Expand Up @@ -217,7 +217,7 @@ cost= scan_time() * optimizer_cache_cost * SCAN_LOOKUP_COST +
We are ignoring TABLE_SCAN_SETUP (which is just to prefer index lookup on small
tables).
We can also ignore records * WHERE_COMPARE_COST as we don't have that
in the above calcuated 'ms'.
in the above calculated 'ms'.
row_costs= (ROW_COPY_COST + ROW_LOOKUP_COST)

cost= scan_time() * 1 * 1 +
Expand Down Expand Up @@ -430,7 +430,7 @@ blocks= index_size/IO_SIZE =
->
1000000 * 19 / 0.75/ 4096 = 6184
engine_blocks (block_size 8192) = 6184/2 = 3092
(Range optimzer had calculated 3085)
(Range optimizer had calculated 3085)

keyread_time= blocks * avg_io_cost() * cache + engine_blocks * INDEX_BLOCK_COPY_COST + rows * (KEY_NEXT_FIND_COST + KEY_COPY_COST);
= engine_blocks * INDEX_BLOCK_COPY_COST + rows * KEY_NEXT_FIND_COST=
Expand Down Expand Up @@ -1258,7 +1258,7 @@ MySQL cost structures
MySQL 8.0 server cost are stored in the class Server_cost_constants defined
int opt_costconstants.h

It containts the following slots and has the following default values:
It contains the following slots and has the following default values:

m_row_evaluate_cost 0.1 Cost for evaluating the query condition on
a row
Expand Down
2 changes: 1 addition & 1 deletion cmake/aws_sdk.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ FUNCTION (CHECK_AWS_SDK RETVAL REASON)
ENDIF()

IF(UNIX)
# Check librairies required for building SDK
# Check libraries required for building SDK
FIND_PACKAGE(CURL)
SET_PACKAGE_PROPERTIES(CURL PROPERTIES TYPE REQUIRED)
IF(NOT CURL_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion cmake/generate_sbom.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ FUNCTION(GENERATE_SBOM)
LIST(FILTER ALL_SUBMODULES EXCLUDE REGEX libmariadb/docs)

# It is possible to provide EXTRA_SBOM_DEPENDENCIES
# and accompanying per-dependency data, to extend generared sbom
# and accompanying per-dependency data, to extend generated sbom
# document.
# Example below injects an extra "ncurses" dependency using several
# command line parameters for CMake.
Expand Down
2 changes: 1 addition & 1 deletion cmake/merge_archives_unix.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA


# MRI scripts have a problem with +. It's a line contination character
# MRI scripts have a problem with +. It's a line continuation character
# unfortunately there is no escape character. We know we don't have
# "+" in libraries or the MariaDB paths, but Ubuntu CI builds will have
# in their CI path due to the package names that Ubuntu generates.
Expand Down
2 changes: 1 addition & 1 deletion cmake/os/Windows.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ADD_DEFINITIONS(-DWIN32_LEAN_AND_MEAN)

# Adjust compiler and linker flags
IF(MINGW AND CMAKE_SIZEOF_VOID_P EQUAL 4)
# mininal architecture flags, i486 enables GCC atomics
# minimal architecture flags, i486 enables GCC atomics
ADD_DEFINITIONS(-march=i486)
ENDIF()

Expand Down
2 changes: 1 addition & 1 deletion debian/autobake-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ disable_libfmt()

remove_package_notes()
{
# binutils >=2.39 + disto makefile /usr/share/debhelper/dh_package_notes/package-notes.mk
# binutils >=2.39 + distro makefile /usr/share/debhelper/dh_package_notes/package-notes.mk
sed -e '/package.notes/d' -i debian/rules debian/control
}

Expand Down
2 changes: 1 addition & 1 deletion debian/mariadb-plugin-mroonga.lintian-overrides
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This little bit diffrent than MariaDB so needed file
# This is a little bit different than MariaDB so needed file
mariadb-plugin-mroonga: extra-license-file [usr/share/mysql/mroonga/COPYING]
4 changes: 2 additions & 2 deletions debian/mariadb-server.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ EOF
then
mkdir -Z "$mariadb_logdir"
fi
# When creating an ext3 jounal on an already mounted filesystem like e.g.
# When creating an ext3 journal on an already mounted filesystem like e.g.
# /var/lib/mysql, you get a .journal file that is not modifiable by chown.
# The mariadb_statedir must not be writable by the mysql user under any
# circumstances as it contains scripts that are executed by root.
Expand All @@ -172,7 +172,7 @@ EOF
# 3. Allow user 'mysql' to see and execute auth_pam_tool
# -> Now user mysql owns the directory and can see and execute the binary inside
# -> Since the binary is setuid, user mysql gets limited root powers here to
# run the PAM authetications, which need root (e.g. to validate passwords
# run the PAM authentications, which need root (e.g. to validate passwords
# against /etc/shadow)
chown mysql /usr/lib/mysql/plugin/auth_pam_tool_dir

Expand Down
2 changes: 1 addition & 1 deletion debian/mariadb-test-data.lintian-overrides
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ incorrect-path-for-interpreter /usr/bin/env perl != /usr/bin/perl [usr/share/mar
bash-term-in-posix-shell '${BASH_VERSION' [usr/share/mysql/mariadb-test/std_data/wsrep_notify.sh:87]
bash-term-in-posix-shell '${BASH_VERSION' [usr/share/mysql/mariadb-test/std_data/wsrep_notify_ssl.sh:87]
# These files are result files and they are supposed to be
# Natial encoded (ISO/IEC 8859-1) not UTF-8
# National encoded (ISO/IEC 8859-1) not UTF-8
national-encoding [usr/share/mysql/mariadb-test/include/ctype_E05C.inc]
national-encoding [usr/share/mysql/mariadb-test/main/alter_table.result]
national-encoding [usr/share/mysql/mariadb-test/main/binary.result]
Expand Down
2 changes: 1 addition & 1 deletion debian/source/lintian-overrides
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mariadb source: package-uses-deprecated-debhelper-compat-version 9
source-is-missing [sql/share/charsets/languages.html]
source-is-missing [storage/rocksdb/rocksdb/docs/_includes/footer.html]
missing-build-dependency-for-dh-addon systemd (does not satisfy debhelper:any (>= 9.20160709~) | debhelper-compat:any | dh-sequence-systemd:any | dh-systemd:any) [debian/rules]
# Should in some point reviewd what should we done
# Should in some point review what should we do
dependency-is-not-multi-archified libmariadb-dev-compat depends on libmariadb-dev (multi-arch: no)
dependency-is-not-multi-archified mariadb-plugin-gssapi-client depends on mariadb-client (multi-arch: no)
# These are for purpose
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/innobackupex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ enum innobackupex_options
OPT_DATABASES,
OPT_DECOMPRESS,

/* options wich are passed directly to xtrabackup */
/* options which are passed directly to xtrabackup */
OPT_CLOSE_FILES,
OPT_COMPACT,
OPT_COMPRESS,
Expand Down
2 changes: 1 addition & 1 deletion extra/replace.c
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ static int init_sets(REP_SETS *sets,uint states)
return 0;
}

/* Make help sets invisible for nicer codeing */
/* Make help sets invisible for nicer coding */

static void make_sets_invisible(REP_SETS *sets)
{
Expand Down
2 changes: 1 addition & 1 deletion libmysqld/examples/builder-sample/emb_sample.bpr
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Comments=
[HistoryLists\hlIncludePath]
Count=2
Item0=$(BCB)\include;$(BCB)\include\vcl;..\..\..\include
Item1=$(BCB)\include;$(BCB)\include\vcl;..\..\..\inluce
Item1=$(BCB)\include;$(BCB)\include\vcl;..\..\..\include

[HistoryLists\hlLibraryPath]
Count=1
Expand Down
4 changes: 2 additions & 2 deletions man/mariadb-check.1
Original file line number Diff line number Diff line change
Expand Up @@ -676,12 +676,12 @@ Specifying a password on the command line should be considered insecure\&. You c
.sp -1
.IP \(bu 2.3
.\}
.\" mariadb-check: persisent option
.\" mariadb-check: persistent option
.\" persistent option: mariadb-check
\fB\-\-persistent\fR,
\fB\-Z\fR
.sp
Used with ANALYZE TABLE to append the option PERSISENT FOR ALL.
Used with ANALYZE TABLE to append the option PERSISTENT FOR ALL.
.RE
.sp
.RS 4
Expand Down
2 changes: 1 addition & 1 deletion man/mariadb-import.1
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ first argument\&.
.IP \(bu 2.3
.\}
.\" mariadb-import: parallel option
.\" paralle option: mariadb-import
.\" parallel option: mariadb-import
\fB\-\-parallel=\fR\fB\fIN\fR\fR,
\fB\-j \fR\fB\fIN\fR\fR\fR
.sp
Expand Down
2 changes: 1 addition & 1 deletion man/mariadb.1
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,7 @@ Change the string that
\fBmariadb\fR
interprets as the separator between SQL statements\&. The default is the semicolon character (\(lq;\(rq)\&.
.sp
The delimiter can be specified as an unquoted or quoted argument\&. Quoting can be done with either single quote (') or douple quote (") characters\&. To include a quote within a quoted string, either quote the string with the other quote character or escape the quote with a backslash (\(lq\e\(rq) character\&. Backslash should be avoided outside of quoted strings because it is the escape character for MariaDB\&. For an unquoted argument, the delmiter is read up to the first space or end of line\&. For a quoted argument, the delimiter is read up to the matching quote on the line\&.
The delimiter can be specified as an unquoted or quoted argument\&. Quoting can be done with either single quote (') or double quote (") characters\&. To include a quote within a quoted string, either quote the string with the other quote character or escape the quote with a backslash (\(lq\e\(rq) character\&. Backslash should be avoided outside of quoted strings because it is the escape character for MariaDB\&. For an unquoted argument, the delimiter is read up to the first space or end of line\&. For a quoted argument, the delimiter is read up to the matching quote on the line\&.
.sp
When the delimiter recognized by
\fBmariadb\fR
Expand Down
12 changes: 6 additions & 6 deletions mysql-test/main/sp.result
Original file line number Diff line number Diff line change
Expand Up @@ -4232,7 +4232,7 @@ create procedure bug15231_2(inout ioid integer)
begin
select "Before NOT FOUND condition is triggered" as '1';
select id into ioid from t3 where id=ioid;
select "After NOT FOUND condtition is triggered" as '2';
select "After NOT FOUND condition is triggered" as '2';
if ioid is null then
set ioid=1;
end if;
Expand Down Expand Up @@ -4267,7 +4267,7 @@ call bug15231_1()|
1
Before NOT FOUND condition is triggered
2
After NOT FOUND condtition is triggered
After NOT FOUND condition is triggered
xid xdone
1 1
call bug15231_3()|
Expand Down Expand Up @@ -5305,12 +5305,12 @@ PRIMARY KEY ( id )
CREATE TABLE bug23760_log (
id INT NOT NULL AUTO_INCREMENT ,
reason VARCHAR(50)NULL ,
ammount INT NOT NULL ,
amount INT NOT NULL ,
PRIMARY KEY ( id )
)|
CREATE PROCEDURE bug23760_update_log(r Varchar(50), a INT)
BEGIN
INSERT INTO bug23760_log (reason, ammount) VALUES(r, a);
INSERT INTO bug23760_log (reason, amount) VALUES(r, a);
END|
CREATE PROCEDURE bug23760_test_row_count()
BEGIN
Expand All @@ -5333,7 +5333,7 @@ ROW_COUNT()
7
CALL bug23760_test_row_count()|
SELECT * FROM bug23760_log ORDER BY id|
id reason ammount
id reason amount
1 Test is working 7
SET @save_max_sp_recursion= @@max_sp_recursion_depth|
SELECT @save_max_sp_recursion|
Expand All @@ -5348,7 +5348,7 @@ SELECT ROW_COUNT()|
ROW_COUNT()
16
SELECT * FROM bug23760_log ORDER BY id|
id reason ammount
id reason amount
1 Test is working 7
2 Test2 is working 7
3 Test2 is working 7
Expand Down
6 changes: 3 additions & 3 deletions mysql-test/main/sp.test
Original file line number Diff line number Diff line change
Expand Up @@ -4674,7 +4674,7 @@ create procedure bug15231_2(inout ioid integer)
begin
select "Before NOT FOUND condition is triggered" as '1';
select id into ioid from t3 where id=ioid;
select "After NOT FOUND condtition is triggered" as '2';
select "After NOT FOUND condition is triggered" as '2';

if ioid is null then
set ioid=1;
Expand Down Expand Up @@ -5840,13 +5840,13 @@ CREATE TABLE bug23760 (
CREATE TABLE bug23760_log (
id INT NOT NULL AUTO_INCREMENT ,
reason VARCHAR(50)NULL ,
ammount INT NOT NULL ,
amount INT NOT NULL ,
PRIMARY KEY ( id )
)|

CREATE PROCEDURE bug23760_update_log(r Varchar(50), a INT)
BEGIN
INSERT INTO bug23760_log (reason, ammount) VALUES(r, a);
INSERT INTO bug23760_log (reason, amount) VALUES(r, a);
END|

CREATE PROCEDURE bug23760_test_row_count()
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/suite/perfschema/r/table_schema.result
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ def performance_schema replication_connection_configuration SSL_ALLOWED 6 NULL N
def performance_schema replication_connection_configuration SSL_CA_FILE 7 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Path to the file that contains one or more certificates for trusted Certificate Authorities (CA) to use for TLS. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_CA_PATH 8 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Path to a directory that contains one or more PEM files that contain X509 certificates for a trusted Certificate Authority (CA) to use for TLS. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_CERTIFICATE 9 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Path to the certificate used to authenticate the master. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_CIPHER 10 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Which cipher is used for encription. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_CIPHER 10 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Which cipher is used for encryption. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_KEY 11 NULL NO varchar 512 1536 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(512) select,insert,update,references Path to the private key used for TLS. NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_VERIFY_SERVER_CERTIFICATE 12 NULL NO enum 3 9 NULL NULL NULL utf8mb3 utf8mb3_general_ci enum('YES','NO') select,insert,update,references Whether the server certificate is verified as part of the SSL connection NEVER NULL NO NO
def performance_schema replication_connection_configuration SSL_CRL_FILE 13 NULL NO varchar 255 765 NULL NULL NULL utf8mb3 utf8mb3_general_ci varchar(255) select,insert,update,references Path to the PEM file containing one or more revoked X.509 certificates. NEVER NULL NO NO
Expand Down
18 changes: 9 additions & 9 deletions mysys/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Mon Aug 31 23:51:13 1992 Michael Widenius (monty@bitch)

Mon Aug 17 01:46:36 1992 Michael Widenius (monty@bitch)

* Added ny cashing-rutine mf_iocash for quicker io.
* Added ny caching-routine mf_iocache for quicker io.

Wed Aug 12 13:41:18 1992 Michael Widenius (monty@bitch)

Expand Down Expand Up @@ -108,8 +108,8 @@ Fri Nov 23 23:53:46 1990 Michael Widenius (monty at LYNX)

Mon Oct 1 13:16:15 1990 Michael Widenius (monty at LYNX)

* Added use of asynchronic io in read_cash_record().
* Added write_cash and flush_write_cash to record cashing.
* Added use of asynchronic io in read_cache_record().
* Added write_cache and flush_write_cache to record caching.

Sun Sep 16 22:05:25 1990 Michael Widenius (monty at LYNX)

Expand All @@ -125,7 +125,7 @@ Sun Apr 1 23:29:47 1990 Monty (monty at monty)

* Changed mf_keydisk.c to have separate functions for read and write.
Read can now return pointer to intern key-buffer to skip
unessessary memcpy-s.
unnecessary memcpy-s.

Fri Mar 23 23:03:39 1990 Monty (monty at monty)

Expand All @@ -152,7 +152,7 @@ Mon Dec 4 17:36:16 1989 Monty (monty at monty)

* Changed safemalloc() to use my_message() if out of memory and
to check MY_WME if we want this error-messages.
* Changed my_setwd() to use dos_setdrive() insted of system().
* Changed my_setwd() to use dos_setdrive() instead of system().

Wed Oct 25 02:56:07 1989 Monty (monty at monty)

Expand All @@ -179,7 +179,7 @@ Wed Jun 21 01:34:04 1989 Monty (monty at monty)
Mon May 22 14:03:44 1989 Monty (monty at monty)

* Fixed my_getwd and my_setwd so they work.
* Added extern variabel curr_char[] with is set to current
* Added extern variable curr_char[] with is set to current
directory after my_getwd() or my_setwd();

Mon Jan 23 03:38:50 1989 Monty (monty at monty)
Expand Down Expand Up @@ -208,14 +208,14 @@ Fri Dec 2 03:29:21 1988 Monty (monty at monty)

* Added more defines under MEMORY in my_func.h
* Added functions to llib-lmysys.
* Removed RCS/* files and installed ewerything as stable.
* Removed RCS/* files and installed everything as stable.
(Because errors in old RCS-files.

Wed Nov 9 00:32:33 1988 Monty (monty at monty)

* Changed realloc for MSDOS; Previous version freed old block on
* error, new version (of compiler) dosn't.
* error, new version (of compiler) doesn't.

Wed Oct 26 21:07:27 1988 Monty (monty at monty)

* Fixed missing updateing of my_stream_opened;
* Fixed missing updating of my_stream_opened;
Loading