~ For negotiation failures: we tell them the parameter we didn't like. */
| 369 | |
| 370 | /*~ For negotiation failures: we tell them the parameter we didn't like. */ |
| 371 | static void negotiation_failed(struct state *state, |
| 372 | const char *fmt, ...) |
| 373 | { |
| 374 | va_list ap; |
| 375 | const char *errmsg; |
| 376 | |
| 377 | va_start(ap, fmt); |
| 378 | errmsg = tal_vfmt(tmpctx, fmt, ap); |
| 379 | va_end(ap); |
| 380 | |
| 381 | open_err_warn(state, "You gave bad parameters: %s", errmsg); |
| 382 | } |
| 383 | |
| 384 | static void billboard_update(struct state *state) |
| 385 | { |
no test coverage detected