aboutsummaryrefslogtreecommitdiff
path: root/ge.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2022-09-10 14:29:40 +0000
committerOmar Polo <op@omarpolo.com>2022-09-10 14:29:40 +0000
commitc5b4db930eb7d4546b7591bc719ce22abf83beb6 (patch)
treedd6ed0681d351eb75eea50712171f64292ba8ba9 /ge.c
parent71ddfd2023f7358314ee13427919803c5917c6ab (diff)
specify custom version strings for the various cmds
Diffstat (limited to 'ge.c')
-rw-r--r--ge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ge.c b/ge.c
index ec35184..91b6646 100644
--- a/ge.c
+++ b/ge.c
@@ -184,7 +184,7 @@ static __dead void
usage(void)
{
fprintf(stderr,
- "Version: " GMID_STRING "\n"
+ "Version: " GE_STRING "\n"
"Usage: %s [-hVv] [-d certs-dir] [-H hostname] [-p port] [dir]\n",
getprogname());
exit(1);
@@ -221,7 +221,7 @@ main(int argc, char **argv)
fatal("port number is %s: %s", errstr, optarg);
break;
case 'V':
- puts("Version: " GMID_STRING);
+ puts("Version: " GE_STRING);
return 0;
default:
usage();