Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-12 20:43:53 +0300
committerChristopher Faylor <me@cgf.cx>2006-01-12 20:43:53 +0300
commit951bd8e9f1fd57e7c7d44183ae3541a52bffa9d6 (patch)
tree594574127bdb6947136bc86e3a1621270e892d8a
parentf68671330fd547434ca6c15050658cd4451771c8 (diff)
* cygcheck.cc: Replace ` with ' throughout.
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/cygcheck.cc18
2 files changed, 13 insertions, 9 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 3245d8ad4..cdd87688f 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-12 Christopher Faylor <cgf@timesys.com>
+
+ * cygcheck.cc: Replace ` with ' throughout.
+
2006-01-05 Christopher Faylor <cgf@timesys.com>
* cygcheck.cc (dump_sysinfo): Report the failing drive to prevent
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index c6e5e5eca..75c31c7b9 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -815,7 +815,7 @@ scan_registry (RegInfo * prev, HKEY hKey, char *name, int cygnus)
break;
case REG_EXPAND_SZ:
case REG_SZ:
- printf ("`%s'\n", value_data);
+ printf ("'%s'\n", value_data);
break;
default:
printf ("(unsupported type)\n");
@@ -861,7 +861,7 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
if (access (id, X_OK))
{
- fprintf (stderr, "`id' program not found\n");
+ fprintf (stderr, "'id' program not found\n");
return;
}
@@ -876,7 +876,7 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
uid += strlen ("uid=");
else
{
- fprintf (stderr, "garbled output from `id' command - no uid= found\n");
+ fprintf (stderr, "garbled output from 'id' command - no uid= found\n");
return;
}
char *gid = strtok (NULL, ")");
@@ -884,7 +884,7 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
gid += strlen ("gid=") + 1;
else
{
- fprintf (stderr, "garbled output from `id' command - no gid= found\n");
+ fprintf (stderr, "garbled output from 'id' command - no gid= found\n");
return;
}
@@ -1195,7 +1195,7 @@ dump_sysinfo ()
if (strcmp (environ[i], "PATH") == 0)
continue; /* we handle this one specially */
if (strcasecmp (environ[i], known_env_vars[j]) == 0)
- printf ("%s = `%s'\n", environ[i], eq + 1);
+ printf ("%s = '%s'\n", environ[i], eq + 1);
*eq = '=';
}
}
@@ -1222,7 +1222,7 @@ dump_sysinfo ()
if (!found)
{
*eq = 0;
- printf ("%s = `%s'\n", environ[i], eq + 1);
+ printf ("%s = '%s'\n", environ[i], eq + 1);
*eq = '=';
}
}
@@ -1232,7 +1232,7 @@ dump_sysinfo ()
if (registry)
{
if (givehelp)
- printf ("Scanning registry for keys with `Cygnus' in them...\n");
+ printf ("Scanning registry for keys with 'Cygnus' in them...\n");
#if 0
/* big and not generally useful */
scan_registry (0, HKEY_CLASSES_ROOT, (char *) "HKEY_CLASSES_ROOT", 0);
@@ -1248,7 +1248,7 @@ dump_sysinfo ()
printf ("\n");
}
else
- printf ("Use `-r' to scan registry\n\n");
+ printf ("Use '-r' to scan registry\n\n");
if (givehelp)
{
@@ -1486,7 +1486,7 @@ check_keys ()
fputs ("\nThis key check works only in a console window,", stderr);
fputs (" _NOT_ in a terminal session!\n", stderr);
fputs ("Abort with Ctrl+C if in a terminal session.\n\n", stderr);
- fputs ("Press `q' to exit.\n", stderr);
+ fputs ("Press 'q' to exit.\n", stderr);
INPUT_RECORD in, prev_in;