style cleanup
[citadel.git] / citadel / server / makeuserkey.c
index f7f9fd19e06dd7df8233691b3491746c571ab8f1..1c5469522b2fb1f6fc8211f2bfd5754148bbb586 100644 (file)
@@ -1,9 +1,9 @@
 // makeuserkey() - convert a username into the format used as a database key
 //
-// Copyright (c) 1987-2023 by the citadel.org team
+// Copyright (c) 1987-2024 by the citadel.org team
 //
-// This program is open source software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License, version 3.
+// This program is open source software.  Use, duplication, or disclosure
+// are subject to the terms of the GNU General Public License, version 3.
 
 #include <stdlib.h>
 #include <unistd.h>
@@ -36,5 +36,3 @@ void makeuserkey(char *key, const char *username) {
        }
        key[keylen++] = 0;
 }
-
-