diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-02-21 15:51:24 +0100 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-02-21 15:51:24 +0100 |
| commit | 9cb59aa6fd10b809d6a3bce8bd7d0b87f1684bea (patch) | |
| tree | 1e5eb888d434899c666e16f730253fac3b76cd50 /src/app.c | |
| parent | a36a249565bf74689c38977df2be6d0eaff85846 (diff) | |
Simplfy the html when adding clients
Diffstat (limited to 'src/app.c')
| -rw-r--r-- | src/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -517,7 +517,7 @@ int list_clients(struct App *app, struct ListClientResult *result) { result->clients[index].last_backup = time_from_double(last_backup); if (backup_status == NULL) { - strncpy(result->clients[index].status, "MISSING", BACKUP_STATUS_MAX); + strncpy(result->clients[index].status, "NEVER", BACKUP_STATUS_MAX); result->clients[index].is_stale = 0; } else if (strcmp((char*)backup_status, "RUNNING") == 0) { strncpy(result->clients[index].status, "RUNNING", BACKUP_STATUS_MAX); |
