diff options
| author | Jens Schweikhardt <schweikh@schweikhardt.net> | 2025-08-31 16:04:57 +0200 |
|---|---|---|
| committer | Jens Schweikhardt <schweikh@schweikhardt.net> | 2025-08-31 16:04:57 +0200 |
| commit | 275e732d08441e5180ae8ef17da0f684106e60d6 (patch) | |
| tree | 1e07da3553fcee7295f8645a76ec1103e321b476 /hextosrc.c | |
| parent | 1ba7b3a044045ea2aa91dd46acc3a1b4531a8bc1 (diff) | |
More history. HASH is not a good idea, changes too often.
Diffstat (limited to 'hextosrc.c')
| -rw-r--r-- | hextosrc.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -22,9 +22,6 @@ /* FreeBSD: devel/libunistring */ #include <uniname.h> -#ifndef HASH -#define HASH "(undefined)" -#endif #ifndef VERSION #define VERSION "(undefined)" #endif @@ -143,7 +140,7 @@ void parse_options(int aArgc, char **aArgv) { while ((ch = getopt(aArgc, aArgv, "Vw:h:")) != -1) { switch (ch) { case 'V': - printf("%s version %s, hash %s\n", aArgv[0], VERSION, HASH); + printf("%s version %s\n", aArgv[0], VERSION); exit (EXIT_SUCCESS); break; case 'h': |
