diff options
| author | grunfink <grunfink@comam.es> | 2025-09-12 21:56:53 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-09-12 21:56:53 +0200 |
| commit | f971a59599399332c1249c2f99e45973523d476f (patch) | |
| tree | 7190c4624a7004aaacec5203987de7131a61d4e1 | |
| parent | 08f99232e0854529bfd6f74d22d56fd4c8cc4cb5 (diff) | |
Fixed bug in instance_failure() path.
| -rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3054,7 +3054,7 @@ int instance_failure(const char *url, int op) return 0; xs *md5 = xs_md5_hex(hostname, strlen(hostname)); - xs *fn = xs_fmt("%s/%s", srv_basedir, md5); + xs *fn = xs_fmt("%s/failure/%s", srv_basedir, md5); switch (op) { case 0: /** check **/ |