2a684cad5f
Patch tested by compiling with `__attribute__ ((format (printf, 2, 3)))` applied to `cmd_results_new`. String usage constants have been converted from pointers to arrays when encountered. General handler format strings were sometimes modified to include the old input string, especially for unknown command errors.
26 lines
763 B
C
26 lines
763 B
C
#define _POSIX_C_SOURCE 200809L
|
|
#include <string.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "stringop.h"
|
|
|
|
struct cmd_results *seat_cmd_attach(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "attach", EXPECTED_AT_LEAST, 1))) {
|
|
return error;
|
|
}
|
|
if (!config->handler_context.seat_config) {
|
|
return cmd_results_new(CMD_FAILURE, "No seat defined");
|
|
}
|
|
|
|
struct seat_attachment_config *attachment = seat_attachment_config_new();
|
|
if (!attachment) {
|
|
return cmd_results_new(CMD_FAILURE,
|
|
"Failed to allocate seat attachment config");
|
|
}
|
|
attachment->identifier = strdup(argv[0]);
|
|
list_add(config->handler_context.seat_config->attachments, attachment);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|