From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 5F7CE1FF16E for ; Mon, 3 Feb 2025 15:22:01 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 8F96619C2; Mon, 3 Feb 2025 15:22:01 +0100 (CET) Mime-Version: 1.0 Date: Mon, 03 Feb 2025 15:21:58 +0100 Message-Id: To: "Fiona Ebner" , "Proxmox VE development discussion" From: "Max Carrara" X-Mailer: aerc 0.18.2-0-ge037c095a049 References: <20250109144818.430185-1-m.carrara@proxmox.com> <20250109144818.430185-12-m.carrara@proxmox.com> In-Reply-To: X-SPAM-LEVEL: Spam detection results: 0 AWL 0.068 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: Re: [pve-devel] [PATCH v3 pve-common 11/12] introduce PVE::Filesystem X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" On Fri Jan 31, 2025 at 1:44 PM CET, Fiona Ebner wrote: > Am 09.01.25 um 15:48 schrieb Max Carrara: > > + > > +sub fs_canonicalize : prototype($) { > > + my ($path) = @_; > > + > > + croak "\$path is undef" if !defined($path); > > + > > + my $canonicalized_path = Cwd::abs_path($path); > > + > > + croak "failed to canonicalize path: $!" if !defined($canonicalized_path); > > + > > + return $canonicalized_path; > > +} > > + > > Missing the 1; at the end of module Woops, thanks for spotting this! Will correct that. _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel