]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
iptraf-ng: Fix build warning - chown: warning: '.' should be ':'
authorAdolf Belka <adolf.belka@ipfire.org>
Mon, 25 May 2026 11:55:50 +0000 (13:55 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 26 May 2026 09:00:18 +0000 (09:00 +0000)
- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/iptraf-ng

index f5e07352d74ff1693b29f6f7080aaa9137e796bf..30d40253e3322d5ff0f83b0d2254e5b464e1327c 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = iptraf-ng
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       =
 
@@ -90,7 +90,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        # Directory install
        -mkdir -vp /var/log/iptraf-ng
        chmod 750 /var/log/iptraf-ng
-       chown root.root /var/log/iptraf-ng
+       chown root:root /var/log/iptraf-ng
 
        # Install logrotate
        install -v -m 644 $(DIR_SRC)/config/iptraf-ng/iptraf-ng.logrotate \