From 05ef19ebcffc35aa6f99113d13e5db5899d99802 Mon Sep 17 00:00:00 2001
From: Leigh B Stoller <stoller@flux.utah.edu>
Date: Tue, 14 Jun 2022 17:38:08 -0600
Subject: [PATCH] Fix error message.

---
 account/mkusercert.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/account/mkusercert.in b/account/mkusercert.in
index 33c9d0ea48..8355f243e1 100755
--- a/account/mkusercert.in
+++ b/account/mkusercert.in
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -wT
 #
-# Copyright (c) 2000-2020 University of Utah and the Flux Group.
+# Copyright (c) 2000-2020, 2022 University of Utah and the Flux Group.
 # 
 # {{{EMULAB-LICENSE
 # 
@@ -428,7 +428,7 @@ sub CreateNewCert() {
 	    ($encrypted ? " -passout 'pass:${sh_password}' -des3 " : "");
 
 	system("$OPENSSL genrsa $genopts -out usercert_key.pem 2048")
-	    == 0 or fatal("Could generate new key");
+	    == 0 or fatal("Could not generate new key");
     }
     my $reqopts = ($encrypted ? "-passin 'pass:${sh_password}' " : "");
     
-- 
GitLab