]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
dropbear: fix typos in path configuration
authorKonstantin Demin <rockdrilla@gmail.com>
Thu, 31 Jul 2025 12:09:49 +0000 (15:09 +0300)
committerHauke Mehrtens <hauke@hauke-m.de>
Thu, 7 Aug 2025 14:43:59 +0000 (16:43 +0200)
Replace _FILE with _PATH

Fixes: d8ff2d8cba7c ("dropbear: refactor configuration")
Signed-off-by: Konstantin Demin <rockdrilla@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19611
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
package/network/services/dropbear/Makefile

index 72bec46435dd852d7ec6df3592e04b779727487c..dcf67c8400da778db475e603f892c6761f8fccf5 100644 (file)
@@ -138,9 +138,9 @@ DB_OPT_COMMON = \
        MAX_UNAUTH_PER_IP,$(CONFIG_DROPBEAR_MAX_UNAUTH_PER_IP) \
        UNAUTH_CLOSE_DELAY,$(CONFIG_DROPBEAR_UNAUTH_CLOSE_DELAY) \
        $(if $(CONFIG_DROPBEAR_RSA),DROPBEAR_DEFAULT_RSA_SIZE$(comma)$(CONFIG_DROPBEAR_DEFAULT_RSA_SIZE)) \
-       $(if $(CONFIG_DROPBEAR_LASTLOG),LASTLOG_FILE$(comma)$(CONFIG_DROPBEAR_LASTLOG_FILE)) \
-       $(if $(CONFIG_DROPBEAR_UTMP),UTMP_FILE$(comma)$(CONFIG_DROPBEAR_UTMP_FILE)) \
-       $(if $(CONFIG_DROPBEAR_WTMP),WTMP_FILE$(comma)$(CONFIG_DROPBEAR_WTMP_FILE)) \
+       $(if $(CONFIG_DROPBEAR_LASTLOG),LASTLOG_FILE$(comma)$(CONFIG_DROPBEAR_LASTLOG_PATH)) \
+       $(if $(CONFIG_DROPBEAR_UTMP),UTMP_FILE$(comma)$(CONFIG_DROPBEAR_UTMP_PATH)) \
+       $(if $(CONFIG_DROPBEAR_WTMP),WTMP_FILE$(comma)$(CONFIG_DROPBEAR_WTMP_PATH)) \
 
 
 ##############################################################################