From 5e174ba25d446b28732fbc591e400dd7acb2f42e Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 4 Mar 2026 15:47:12 +0100 Subject: [PATCH] MT#64527 ngcp-panel-create-keys: Add missing import We need to import Fcntl for O_WRONLY. Fixes: commit fb44ee879a28ee3655ca1901699db1da52f316b0 Change-Id: I3458e1ece61c230072d9f8e325cab5adc8cf07fb --- tools_bin/ngcp-panel-create-keys | 1 + 1 file changed, 1 insertion(+) diff --git a/tools_bin/ngcp-panel-create-keys b/tools_bin/ngcp-panel-create-keys index 562c5f5c8d..1575d62fd6 100755 --- a/tools_bin/ngcp-panel-create-keys +++ b/tools_bin/ngcp-panel-create-keys @@ -5,6 +5,7 @@ use warnings; use Getopt::Long qw(GetOptions); use Pod::Usage qw(pod2usage); +use Fcntl; use File::Basename qw(fileparse); use File::Path qw(make_path);