summaryrefslogtreecommitdiffstats
path: root/winsup/utils/mkpasswd.c
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-18 15:57:56 +0000
committerChristopher Faylor <me@cgf.cx>2006-01-18 15:57:56 +0000
commit14a4d5989a2415931dec5cdb742576d17ec63970 (patch)
treee74f15ef55a37e4637e5be44d54b3ebf28ee1bba /winsup/utils/mkpasswd.c
parent3b5d71b3a26411490362228623e9570654afc008 (diff)
downloadcygnal-14a4d5989a2415931dec5cdb742576d17ec63970.tar.gz
cygnal-14a4d5989a2415931dec5cdb742576d17ec63970.tar.bz2
cygnal-14a4d5989a2415931dec5cdb742576d17ec63970.zip
bad_keywords
Diffstat (limited to 'winsup/utils/mkpasswd.c')
-rw-r--r--winsup/utils/mkpasswd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/winsup/utils/mkpasswd.c b/winsup/utils/mkpasswd.c
index 96fec7ad1..e4d9a9684 100644
--- a/winsup/utils/mkpasswd.c
+++ b/winsup/utils/mkpasswd.c
@@ -522,7 +522,7 @@ usage (FILE * stream, int isNT)
" -h,--help displays this message\n"
" -v,--version version information and exit\n\n");
if (isNT)
- fprintf (stream, "One of `-l', `-d' or `-g' must be given.\n");
+ fprintf (stream, "One of '-l', '-d' or '-g' must be given.\n");
return 1;
}
@@ -622,7 +622,7 @@ main (int argc, char **argv)
case 'p':
if (optarg[0] != '/')
{
- fprintf (stderr, "%s: `%s' is not a fully qualified path.\n",
+ fprintf (stderr, "%s: '%s' is not a fully qualified path.\n",
argv[0], optarg);
return 1;
}
@@ -640,7 +640,7 @@ main (int argc, char **argv)
print_version ();
return 0;
default:
- fprintf (stderr, "Try `%s --help' for more information.\n", argv[0]);
+ fprintf (stderr, "Try '%s --help' for more information.\n", argv[0]);
return 1;
}
}
@@ -679,7 +679,7 @@ main (int argc, char **argv)
}
if (!print_local && !print_domain && !print_local_groups)
{
- fprintf (stderr, "%s: Specify one of `-l', `-d' or `-g'\n", argv[0]);
+ fprintf (stderr, "%s: Specify one of '-l', '-d' or '-g'\n", argv[0]);
return 1;
}
if (optind < argc)
@@ -687,7 +687,7 @@ main (int argc, char **argv)
if (!print_domain)
{
fprintf (stderr, "%s: A domain name is only accepted "
- "when `-d' is given.\n", argv[0]);
+ "when '-d' is given.\n", argv[0]);
return 1;
}
domain_specified = 1;
@@ -704,18 +704,18 @@ main (int argc, char **argv)
{
#if 0
/*
- * Get `Everyone' group
+ * Get 'Everyone' group
*/
print_special (print_sids, &sid_world_auth, 1, SECURITY_WORLD_RID,
0, 0, 0, 0, 0, 0, 0);
#endif
/*
- * Get `system' group
+ * Get 'system' group
*/
print_special (print_sids, &sid_nt_auth, 1, SECURITY_LOCAL_SYSTEM_RID,
0, 0, 0, 0, 0, 0, 0);
/*
- * Get `administrators' group
+ * Get 'administrators' group
*/
if (!print_local_groups)
print_special (print_sids, &sid_nt_auth, 2, SECURITY_BUILTIN_DOMAIN_RID,