diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index b5de54d62..38d0bff31 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,3 +1,8 @@ +2003-08-15 Corinna Vinschen + + * regtool.cc (usage): Add missing linefeed. Move example to --help + text. Fix forward slash description. + 2003-08-13 Igor Pechtchanski * dump_setup.cc (check_package_files): Fix extra '/' in filename. diff --git a/winsup/utils/regtool.cc b/winsup/utils/regtool.cc index 2a94c98c0..5f2396cd9 100644 --- a/winsup/utils/regtool.cc +++ b/winsup/utils/regtool.cc @@ -99,22 +99,24 @@ usage (FILE *where = stderr) " -V, --version output version information and exit\n" "\n"); if (where == stdout) - fprintf (where, "" - "KEY is in the format [host]\\prefix\\KEY\\KEY\\VALUE, where host is optional\n" - "remote host in either \\\\hostname or hostname: format and prefix is any of:\n" - " root HKCR HKEY_CLASSES_ROOT (local only)\n" - " config HKCC HKEY_CURRENT_CONFIG (local only)\n" - " user HKCU HKEY_CURRENT_USER (local only)\n" - " machine HKLM HKEY_LOCAL_MACHINE\n" - " users HKU HKEY_USERS\n" - "\n" - "You can use forward slash ('/') as a separator instead of backslash, in\n" - "that case backslash is treated as escape character\n" - ""); - fprintf (where, "" - "Example: %s get '\\user\\software\\Microsoft\\Clock\\iFormat'\n", prog_name); + { + fprintf (where, "" + "KEY is in the format [host]\\prefix\\KEY\\KEY\\VALUE, where host is optional\n" + "remote host in either \\\\hostname or hostname: format and prefix is any of:\n" + " root HKCR HKEY_CLASSES_ROOT (local only)\n" + " config HKCC HKEY_CURRENT_CONFIG (local only)\n" + " user HKCU HKEY_CURRENT_USER (local only)\n" + " machine HKLM HKEY_LOCAL_MACHINE\n" + " users HKU HKEY_USERS\n" + "\n" + "If the keyname starts with a forward slash ('/'), the forward slash is used\n" + "as separator and the backslash can be used as escape character.\n"); + fprintf (where, "" + "Example:\n" + "%s list '/machine/SOFTWARE/Classes/MIME/Database/Content Type/audio\\/wav'\n", prog_name); + } if (where == stderr) - fprintf (where, "Try '%s --help' for more information.", prog_name); + fprintf (where, "Try '%s --help' for more information.\n", prog_name); exit (where == stderr ? 1 : 0); }