Make status_message_set a variadic printf-like function. No functional change -

helpful for a couple of things coming soon.
This commit is contained in:
Nicholas Marriott
2009-07-15 17:39:00 +00:00
parent 780fd8f7a6
commit 92da443a9e
6 changed files with 13 additions and 10 deletions

View File

@ -194,7 +194,7 @@ key_bindings_error(struct cmd_ctx *ctx, const char *fmt, ...)
va_end(ap);
*msg = toupper((u_char) *msg);
status_message_set(ctx->curclient, msg);
status_message_set(ctx->curclient, "%s", msg);
xfree(msg);
}
@ -227,7 +227,7 @@ key_bindings_info(struct cmd_ctx *ctx, const char *fmt, ...)
va_end(ap);
*msg = toupper((u_char) *msg);
status_message_set(ctx->curclient, msg);
status_message_set(ctx->curclient, "%s", msg);
xfree(msg);
}