1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 23:33:12 +02:00

BUILD : 1.7.8 (599) BUGS : N/A NOTES : Cleaned up debug message for Win32 users

git-svn-id: svn://svn.anope.org/anope/trunk@599 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@447 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-03-05 17:34:42 +00:00
parent d99358cc4a
commit 517946bdaa
2 changed files with 20 additions and 2 deletions
+15 -1
View File
@@ -189,7 +189,21 @@ static dbFILE *open_db_write(const char *service, const char *filename,
anope_cmd_global(NULL, "Can not back up %s database %s",
service, filename);
}
alog("errno %d %d %d", errno, ENOENT, EACCES);
#ifdef _WIN32
if (debug) {
if (errno == ENOENT) {
alog("Error %d (ENOENT) : the file or directory does not exist", errno, filename);
} else if (errno == EACCES) {
alog("Error %d (EACCES) : error while attempting to access file", errno);
} else {
alog("Error %d", errno);
}
}
#else
if (debug) {
alog("Error %d", errno);
}
#endif
errno = errno_save;
log_perror("Can not back up %s database %s", service, filename);
if (!NoBackupOkay) {
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="8"
VERSION_BUILD="598"
VERSION_BUILD="599"
# $Log$
#
# BUILD : 1.7.8 (599)
# BUGS : N/A
# NOTES : Cleaned up debug message for Win32 users
#
# BUILD : 1.7.8 (598)
# BUGS : 310
# NOTES : Updated Unreal 3.2 token support.