X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/f133db8e0a997ab97b0b68a870b56f49501fcfae..d37c2d8198de28cc4076c560dff9a94f8452fe7c:/psftp.c?ds=sidebyside diff --git a/psftp.c b/psftp.c index 6f849d4d..4657091f 100644 --- a/psftp.c +++ b/psftp.c @@ -1457,6 +1457,19 @@ void fatalbox(char *fmt, ...) cleanup_exit(1); } +void modalfatalbox(char *fmt, ...) +{ + char str[0x100]; /* Make the size big enough */ + va_list ap; + va_start(ap, fmt); + strcpy(str, "Fatal:"); + vsprintf(str + strlen(str), fmt, ap); + va_end(ap); + strcat(str, "\n"); + fputs(str, stderr); + + cleanup_exit(1); +} void connection_fatal(char *fmt, ...) { char str[0x100]; /* Make the size big enough */