diff options
author | unknown <brian@zim.tangent.org> | 2006-01-25 19:54:42 -0800 |
---|---|---|
committer | unknown <brian@zim.tangent.org> | 2006-01-25 19:54:42 -0800 |
commit | 456524c0608c0fdbf61c585b2bd5dea57e861ef2 (patch) | |
tree | 3da670fea2b41862a7aafcd0b78759610f62319b /mysys/safemalloc.c | |
parent | 58de75fae8bcfebea7549fa3eb909ca6fe8cb090 (diff) | |
download | mariadb-git-456524c0608c0fdbf61c585b2bd5dea57e861ef2.tar.gz |
Rename of my_strdup_with_lenght to match the more common "strndup" method. Soo its now my_strndup().
my_stat() gettinng the correct parameter list may be next :)
client/mysqlslap.c:
rename
extra/comp_err.c:
rename
include/my_sys.h:
replace
mysys/mf_tempdir.c:
replace
mysys/my_malloc.c:
replace
mysys/safemalloc.c:
replace
sql/ha_federated.cc:
replace
sql/log_event.cc:
replace
sql/set_var.cc:
replace
sql/set_var.h:
replace
storage/myisam/ft_stopwords.c:
replace
Diffstat (limited to 'mysys/safemalloc.c')
-rw-r--r-- | mysys/safemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/safemalloc.c b/mysys/safemalloc.c index 6cdf98c5f5f..e40fd751037 100644 --- a/mysys/safemalloc.c +++ b/mysys/safemalloc.c @@ -525,7 +525,7 @@ char *_my_strdup(const char *from, const char *filename, uint lineno, } /* _my_strdup */ -char *_my_strdup_with_length(const byte *from, uint length, +char *_my_strndup(const byte *from, uint length, const char *filename, uint lineno, myf MyFlags) { |