summaryrefslogtreecommitdiff
path: root/sql/password.c
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2001-01-25 22:38:26 +0200
committerunknown <monty@donna.mysql.com>2001-01-25 22:38:26 +0200
commitc6a67ce9dc3b3ec5b9055d158c7c41d35db4fb50 (patch)
treefe3f6949910642edbece6d138397aa25d1699bb4 /sql/password.c
parent060cd1a1376027c120b274932edd1c512dabe39d (diff)
downloadmariadb-git-c6a67ce9dc3b3ec5b9055d158c7c41d35db4fb50.tar.gz
Lots of manual changes
Changed 'static inline' to 'inline' for SCO new's compiler Docs/manual.texi: Lots of changes in "Debugging a MySQL server" and in Log files handling mysys/hash.c: Changed 'static inline' to 'inline' sql/hostname.cc: Changed 'static inline' to 'inline' sql/item.cc: Changed 'static inline' to 'inline' sql/net_serv.cc: Changed 'static inline' to 'inline' sql/password.c: Changed 'static inline' to 'inline' sql/slave.cc: Changed 'static inline' to 'inline' sql/sql_acl.cc: Changed 'static inline' to 'inline' sql/sql_base.cc: Changed mysql_list_field() to convert field names again sql/sql_parse.cc: Changed 'static inline' to 'inline' sql/sql_repl.cc: fixed typo
Diffstat (limited to 'sql/password.c')
-rw-r--r--sql/password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/password.c b/sql/password.c
index 63ab9def651..1c88aabcce2 100644
--- a/sql/password.c
+++ b/sql/password.c
@@ -91,7 +91,7 @@ void make_scrambled_password(char *to,const char *password)
sprintf(to,"%08lx%08lx",hash_res[0],hash_res[1]);
}
-static inline uint char_val(char X)
+inline uint char_val(char X)
{
return (uint) (X >= '0' && X <= '9' ? X-'0' :
X >= 'A' && X <= 'Z' ? X-'A'+10 :