summaryrefslogtreecommitdiffstats
path: root/hivex/hivexget.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-01-29 12:18:30 +0000
committerRichard Jones <rjones@redhat.com>2010-02-19 14:56:45 +0000
commitd583e4dfe1322891b080db074f75b50f1d0f3f60 (patch)
treefe17d6e850889b486a00f232b8dcec80fa050de4 /hivex/hivexget.c
parent23e1a90360ddea4da8eba3b78da4661fb130f07e (diff)
downloadhivex-d583e4dfe1322891b080db074f75b50f1d0f3f60.tar.gz
hivex-d583e4dfe1322891b080db074f75b50f1d0f3f60.tar.xz
hivex-d583e4dfe1322891b080db074f75b50f1d0f3f60.zip
hivex: Add 'hivexsh' program (shell for navigating registry hives).
Diffstat (limited to 'hivex/hivexget.c')
-rw-r--r--hivex/hivexget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hivex/hivexget.c b/hivex/hivexget.c
index fd49293..4f2419c 100644
--- a/hivex/hivexget.c
+++ b/hivex/hivexget.c
@@ -60,7 +60,7 @@ main (int argc, char *argv[])
}
if (path[1] == '\\') {
doubled:
- fprintf (stderr, _("hivexget: %s: \\ characters in path are doubled - are you escaping the path parameter correctly?\n"), path);
+ fprintf (stderr, _("%s: %s: \\ characters in path are doubled - are you escaping the path parameter correctly?\n"), "hivexget", path);
exit (EXIT_FAILURE);
}
@@ -118,7 +118,7 @@ main (int argc, char *argv[])
if (errno)
goto error;
/* else key not found */
- fprintf (stderr, _("hivexget: %s: key not found\n"), key);
+ fprintf (stderr, _("%s: %s: key not found\n"), "hivexget", key);
exit (EXIT_NOT_FOUND);
}