Skip to content

Commit b311e2a

Browse files
committed
Rename local variable.
1 parent 4c551cd commit b311e2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/ippeveprinter.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6925,19 +6925,19 @@ show_status(ippeve_client_t *client) // I - Client connection
69256925
{
69266926
size_t num_options = 0;// Number of form options
69276927
cups_option_t *options = NULL;// Form options
6928-
const char *reasons; // Reasons string
6928+
const char *oreasons; // Reasons string
69296929

69306930
num_options = parse_options(client, &options);
69316931

6932-
if ((reasons = cupsGetOption("reasons", num_options, options)) != NULL)
6932+
if ((oreasons = cupsGetOption("reasons", num_options, options)) != NULL)
69336933
{
69346934
// WARNING: A real printer/server implementation MUST NOT implement
69356935
// state updates via a GET request - GET requests are supposed to be
69366936
// idempotent (without side-effects) and we obviously are not
69376937
// authenticating access here. This form is provided solely to
69386938
// enable testing and development!
69396939

6940-
process_state_message(printer, reasons);
6940+
process_state_message(printer, oreasons);
69416941
}
69426942

69436943
cupsFreeOptions(num_options, options);

0 commit comments

Comments
 (0)