1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 06:16:39 +02:00

Fix error msg in unreal_copyfile

This commit is contained in:
aquanight
2006-08-13 21:27:31 +00:00
parent ef3afb8844
commit f71456670c
+1 -1
View File
@@ -1778,7 +1778,7 @@ int unreal_copyfile(char *src, char *dest)
if (srcfd < 0)
{
config_error("Unable to open module file '%s': %s", src, strerror(errno));
config_error("Unable to open file '%s': %s", src, strerror(errno));
return 0;
}