diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-10-07 11:05:51 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-10-07 11:11:04 +0200 |
commit | 3cea4bb763165d119a329a1c7f2c767857cdb384 (patch) | |
tree | d4a4b18025967ef5bacf7cbd7808698ad63ed7e6 /src/rest.c | |
parent | d7a871b529de5f7d1a72137f395e3ae8bb42a1fd (diff) |
#988 rename og_server_cfg to cfg
to avoid clash with existing variable cfg in client.c
Diffstat (limited to 'src/rest.c')
-rw-r--r-- | src/rest.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1548,7 +1548,7 @@ struct og_image { static int og_get_image_stats(const char *name, struct stat *image_stats) { - const char *dir = cfg.repo.dir; + const char *dir = ogconfig.repo.dir; char filename[PATH_MAX + 1]; snprintf(filename, sizeof(filename), "%s/%s", dir, name); @@ -1561,7 +1561,7 @@ static int og_get_image_stats(const char *name, static json_t *og_json_disk_alloc() { - const char *dir = cfg.repo.dir; + const char *dir = ogconfig.repo.dir; struct statvfs buffer; json_t *disk_json; int ret; |