1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From 52207b88c739b779794158c7a621d9fbfa35e94c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Javier=20Fernandez-Sanguino=20Pe=C3=B1a?= <jfs@computer.org>
Date: Sat, 17 Dec 2022 12:18:17 +0000
Subject: Add "use bytes" to support UTF-8 locales
Bug-Debian: https://bugs.debian.org/168492
Forwarded: no
Last-Update: 2022-12-17
Patch-Name: use-bytes.patch
---
makepasswd | 1 +
1 file changed, 1 insertion(+)
diff --git a/makepasswd b/makepasswd
index 6180c97..30d23e5 100755
--- a/makepasswd
+++ b/makepasswd
@@ -19,6 +19,7 @@ $Description = 'This program is extracted from the author\'s GPL\'ed mkircconf p
use Getopt::Long;
use FileHandle;
use integer;
+use bytes;
#
# Set default values for options ("" to indicate not-specified).
|