no-ca-config.c 305 B

123456789101112131415
  1. /*
  2. * Stub version of setup_ca_config_box, for tools that don't have SSH
  3. * code linked in.
  4. */
  5. #include "putty.h"
  6. #include "dialog.h"
  7. const bool has_ca_config_box = false;
  8. void setup_ca_config_box(struct controlbox *b)
  9. {
  10. unreachable("should never call setup_ca_config_box in this application");
  11. }