X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=sh%2Fhivexsh.c;h=faff83c7249e288cee640f75dfd6b75919f9ed43;hb=a6ba26dca8dd496bec71d65746b3c3b65e604f03;hp=332b77391aceddd2cc94255722a970b1e1c2f5e5;hpb=e8928b001ed31694031257202775375e2f50e1a8;p=hivex.git diff --git a/sh/hivexsh.c b/sh/hivexsh.c index 332b773..faff83c 100644 --- a/sh/hivexsh.c +++ b/sh/hivexsh.c @@ -27,6 +27,11 @@ #include #include #include +#include + +#ifdef HAVE_LIBINTL_H +#include +#endif #ifdef HAVE_LIBREADLINE #include @@ -100,15 +105,17 @@ int main (int argc, char *argv[]) { setlocale (LC_ALL, ""); +#ifdef HAVE_BINDTEXTDOMAIN bindtextdomain (PACKAGE, LOCALEBASEDIR); textdomain (PACKAGE); +#endif int c; const char *filename = NULL; set_prompt_string (); - while ((c = getopt (argc, argv, "dfw")) != EOF) { + while ((c = getopt (argc, argv, "df:w")) != EOF) { switch (c) { case 'd': open_flags |= HIVEX_OPEN_DEBUG; @@ -946,11 +953,13 @@ cmd_setval (char *nrvals_str) "setval", "dword", "xstrtol", xerr); goto error; } +#if SIZEOF_LONG > 4 if (n < 0 || n > UINT32_MAX) { fprintf (stderr, _("%s: %s: integer out of range\n"), "setval", "dword"); goto error; } +#endif uint32_t u32 = htole32 (n); memcpy (values[i].value, &u32, 4); } @@ -999,11 +1008,13 @@ cmd_setval (char *nrvals_str) "setval", "hex", "xstrtol", xerr); goto error; } +#if SIZEOF_LONG > 4 if (t < 0 || t > UINT32_MAX) { fprintf (stderr, _("%s: %s: integer out of range\n"), "setval", "hex"); goto error; } +#endif values[i].t = t; /* Read the hex data. */