| 57 | } |
| 58 | |
| 59 | const char *ref_storage_format_to_name(enum ref_storage_format ref_storage_format) |
| 60 | { |
| 61 | const struct ref_storage_be *be = find_ref_storage_backend(ref_storage_format); |
| 62 | if (!be) |
| 63 | return "unknown"; |
| 64 | return be->name; |
| 65 | } |
| 66 | |
| 67 | static const char *abort_by_ref_transaction_hook = |
| 68 | N_("in '%s' phase, update aborted by the reference-transaction hook"); |
no test coverage detected