summaryrefslogtreecommitdiff
path: root/mysys/mf_fn_ext.c
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-09-05 16:17:08 +0300
committermonty@mashka.mysql.fi <>2002-09-05 16:17:08 +0300
commit0281a6b16026299bebebb58af1b88c2d741b57f6 (patch)
tree103a1aadee6000a5d09b0ba7c1de75797fb958fa /mysys/mf_fn_ext.c
parent1a0e3423e6a311a8af79829b6a6088a909f1e320 (diff)
downloadmariadb-git-0281a6b16026299bebebb58af1b88c2d741b57f6.tar.gz
Fixed searching after ssl directories.
Fixed that GRANT ... REQUIRE options are not forgot when doing new GRANT Changed fn_ext to point at first '.' after directory. FLUSH LOGS removed numerical extension for all future update logs. Fixed the mysqld --help reports right values for --datadir and --bind-address --log-binary=a.b.c now properly strips of .b.c Fix that one can DROP UDF functions that was not loaded at startup Made AND optional in REQUIRE Added REQUIRE NONE
Diffstat (limited to 'mysys/mf_fn_ext.c')
-rw-r--r--mysys/mf_fn_ext.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/mysys/mf_fn_ext.c b/mysys/mf_fn_ext.c
index 3a11f1a247e..9c86a8072ef 100644
--- a/mysys/mf_fn_ext.c
+++ b/mysys/mf_fn_ext.c
@@ -19,10 +19,19 @@
#include <m_string.h>
/*
- Return a pointerto the extension of the filename
- The pointer points at the extension character (normally '.'))
- If there isn't any extension, the pointer points at the end
- ASCII(0) of the filename.
+ Return a pointer to the extension of the filename.
+
+ SYNOPSIS
+ fn_ext()
+ name Name of file
+
+ DESCRIPTION
+ The extension is defined as everything after the first extension character
+ (normally '.') after the directory name.
+
+ RETURN VALUES
+ Pointer to to the extension character. If there isn't any extension,
+ points at the end ASCII(0) of the filename.
*/
my_string fn_ext(const char *name)
@@ -40,6 +49,6 @@ my_string fn_ext(const char *name)
if (!(gpos=strrchr(name,FNLIBCHAR)))
gpos=name;
#endif
- pos=strrchr(gpos,FN_EXTCHAR);
+ pos=strchr(gpos,FN_EXTCHAR);
DBUG_RETURN (pos ? pos : strend(gpos));
} /* fn_ext */