| 1515 | } |
| 1516 | |
| 1517 | const char * |
| 1518 | crm_meta_value(GHashTable * hash, const char *field) |
| 1519 | { |
| 1520 | char *key = NULL; |
| 1521 | const char *value = NULL; |
| 1522 | |
| 1523 | key = crm_meta_name(field); |
| 1524 | if (key) { |
| 1525 | value = g_hash_table_lookup(hash, key); |
| 1526 | free(key); |
| 1527 | } |
| 1528 | |
| 1529 | return value; |
| 1530 | } |
| 1531 | |
| 1532 | static struct crm_option *crm_long_options = NULL; |
| 1533 | static const char *crm_app_description = NULL; |
no test coverage detected