summaryrefslogtreecommitdiff
path: root/xauth.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-09-11 09:54:02 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-09-11 09:54:02 -0700
commitb367ca379ad97763f28a41f601680c376c3de040 (patch)
tree237b1c272cb22573d976951a0716b37b5c02c453 /xauth.c
parent88380275fe13af5238955047f6b018e6e6a3adc8 (diff)
downloadxorg-app-xauth-b367ca379ad97763f28a41f601680c376c3de040.tar.gz
Variable scope reductions, as suggested by cppcheck
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xauth.c')
-rw-r--r--xauth.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/xauth.c b/xauth.c
index d9efda0..3855b53 100644
--- a/xauth.c
+++ b/xauth.c
@@ -79,16 +79,15 @@ NULL };
"standard input. Commands beginning with \"n\" use numeric format.",
"",
NULL };
- const char **msg;
fprintf (stderr, "usage: %s [-options ...] [command arg ...]\n",
ProgramName);
- for (msg = prefixmsg; *msg; msg++) {
+ for (const char **msg = prefixmsg; *msg; msg++) {
fprintf (stderr, "%s\n", *msg);
}
print_help (stderr, NULL, " "); /* match prefix indentation */
fprintf (stderr, "\n");
- for (msg = suffixmsg; *msg; msg++) {
+ for (const char **msg = suffixmsg; *msg; msg++) {
fprintf (stderr, "%s\n", *msg);
}
exit (1);
@@ -101,7 +100,6 @@ NULL };
int
main(int argc, const char *argv[])
{
- int i;
const char *sourcename = defsource;
const char **arglist = defcmds;
int nargs = ndefcmds;
@@ -109,12 +107,11 @@ main(int argc, const char *argv[])
ProgramName = argv[0];
- for (i = 1; i < argc; i++) {
+ for (int i = 1; i < argc; i++) {
const char *arg = argv[i];
if (arg[0] == '-') {
- const char *flag;
- for (flag = (arg + 1); *flag; flag++) {
+ for (const char *flag = (arg + 1); *flag; flag++) {
switch (*flag) {
case 'f': /* -f authfilename */
if (++i >= argc) usage ();