diff options
author | unknown <monty@hundin.mysql.fi> | 2001-05-31 12:18:53 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-05-31 12:18:53 +0300 |
commit | b6cae0f64707aca9ec2bbc437f87a84e53fbfec7 (patch) | |
tree | c974b291b6b89be912a6aa935ac1185bf62dac53 /mysys/errors.c | |
parent | a8f279020d66f3e7f52e7811fbf171d565a99cbe (diff) | |
download | mariadb-git-b6cae0f64707aca9ec2bbc437f87a84e53fbfec7.tar.gz |
Added functions for symbolic link handling to make it possible to
backport things from 4.0. This is safe as the functions are not used!
Fixed bug in new mutex handling in InnoDB
Make allow_break() and dont_break() defines.
Docs/manual.texi:
Remove -fomit-frame-pointer from default binaries
configure.in:
Use -lcma library on HPUX
include/my_sys.h:
Added functions for symbolic link handling to make it possible to
backport things from 4.0. (This is safe as the functions are not used!)
include/mysys_err.h:
Error messages for symlink functions.
innobase/include/sync0sync.ic:
Fixed bug in new mutex handling
mysys/Makefile.am:
Symlink handling
mysys/errors.c:
Symlink handling
mysys/mf_brkhant.c:
Make allow_break() and dont_break() defines.
sql/sql_select.h:
Fix for Intel compiler.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysys/errors.c')
-rw-r--r-- | mysys/errors.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mysys/errors.c b/mysys/errors.c index 6e9f1fabab0..77e52c2f0b3 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -46,6 +46,9 @@ const char * NEAR globerrs[GLOBERRS]= "Can't create directory '%s' (Errcode: %d)", "Character set '%s' is not a compiled character set and is not specified in the '%s' file", "Out of resources when opening file '%s' (Errcode: %d)", + "Can't read value for symlink '%s' (Error %d)", + "Can't create symlink '%s' pointing at '%s' (Error %d)", + "Error on realpath() on '%s' (Error %d)", }; void init_glob_errs(void) @@ -81,6 +84,9 @@ void init_glob_errs() EE(EE_DISK_FULL) = "Disk is full writing '%s'. Waiting for someone to free space..."; EE(EE_CANT_MKDIR) ="Can't create directory '%s' (Errcode: %d)"; EE(EE_UNKNOWN_CHARSET)= "Character set is not a compiled character set and is not specified in the %s file"; - EE(EE_OUT_OF_FILERESOURCES)="Out of resources when opening file '%s' (Errcode: %d)", + EE(EE_OUT_OF_FILERESOURCES)="Out of resources when opening file '%s' (Errcode: %d)"; + EE(EE_CANT_READLINK)="Can't read value for symlink '%s' (Error %d)"; + EE(EE_CANT_SYMLINK)="Can't create symlink '%s' pointing at '%s' (Error %d)"; + EE(EE_REALPATH)="Error on realpath() on '%s' (Error %d)"; } #endif |