Drop macros AGREE_FREE, AGREE_PROPOSED, AGREE_SIGNED

Commit 555de3100 (v4.3.0) added these macros so xdump tables loan and
treaty can share an agreement_statuses table.  Treaties are gone since
commit a109de948 (v4.3.33).  Drop the macros.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2020-12-31 05:45:27 +01:00
parent 5ed11ffd57
commit 1e64ece1f5
3 changed files with 8 additions and 11 deletions

View file

@ -58,9 +58,9 @@ struct lonstr {
time_t l_duedate; /* date after which interest doubles, etc */
};
#define LS_FREE AGREE_FREE
#define LS_PROPOSED AGREE_PROPOSED
#define LS_SIGNED AGREE_SIGNED
#define LS_FREE 0
#define LS_PROPOSED 1
#define LS_SIGNED 2
extern double loan_owed(struct lonstr *loan, time_t paytime);