diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-02-25 22:54:33 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-02-25 22:54:33 +0200 |
commit | 2ab324db26393f50f978323a1495f585bc5a649f (patch) | |
tree | eae11a3d56b0dae0774bb86f18fa64019ea339dd /innobase | |
parent | a6e56b05382a83e369e60e9c6852ae14376b5d54 (diff) | |
download | mariadb-git-2ab324db26393f50f978323a1495f585bc5a649f.tar.gz |
trx0trx.c, trx0trx.h:
Fix wrong spelling
innobase/include/trx0trx.h:
Fix wrong spelling
innobase/trx/trx0trx.c:
Fix wrong spelling
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/include/trx0trx.h | 6 | ||||
-rw-r--r-- | innobase/trx/trx0trx.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/innobase/include/trx0trx.h b/innobase/include/trx0trx.h index 8ac18241e32..61d372a824a 100644 --- a/innobase/include/trx0trx.h +++ b/innobase/include/trx0trx.h @@ -157,7 +157,6 @@ trx_commit_for_mysql( /*=================*/ /* out: 0 or error number */ trx_t* trx); /* in: trx handle */ - /************************************************************************** Does the transaction prepare for MySQL. */ @@ -166,7 +165,6 @@ trx_prepare_for_mysql( /*=================*/ /* out: 0 or error number */ trx_t* trx); /* in: trx handle */ - /************************************************************************** This function is used to find number of prepared transactions and their transaction objects for a recovery. */ @@ -177,7 +175,6 @@ trx_recover_for_mysql( /* out: number of prepared transactions */ XID* xid_list, /* in/out: prepared transactions */ ulint len); /* in: number of slots in xid_list */ - /*********************************************************************** This function is used to commit one X/Open XA distributed transaction which is in the prepared state */ @@ -185,8 +182,7 @@ trx_t * trx_get_trx_by_xid( /*===============*/ /* out: trx or NULL */ - XID* xid); /* in: X/Open XA Transaction Idenfication */ - + XID* xid); /* in: X/Open XA transaction identification */ /************************************************************************** If required, flushes the log to disk if we called trx_commit_for_mysql() with trx->flush_log_later == TRUE. */ diff --git a/innobase/trx/trx0trx.c b/innobase/trx/trx0trx.c index bc9775c21fb..a33ca4b8ec3 100644 --- a/innobase/trx/trx0trx.c +++ b/innobase/trx/trx0trx.c @@ -1917,7 +1917,7 @@ trx_t* trx_get_trx_by_xid( /*===============*/ /* out: trx or NULL */ - XID* xid) /* in: X/Open XA Transaction Idenfication */ + XID* xid) /* in: X/Open XA transaction identification */ { trx_t* trx; |