From 721fb4cc4da954d2257c982ea519970b52577487 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 16 Jun 2025 19:46:05 +0200 Subject: [PATCH] est_client: fixup typo Fixes: WIFI-14694 Signed-off-by: John Crispin --- feeds/tip/cloud_discovery/files/usr/bin/est_client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/tip/cloud_discovery/files/usr/bin/est_client b/feeds/tip/cloud_discovery/files/usr/bin/est_client index a5ce04b82..569c478db 100755 --- a/feeds/tip/cloud_discovery/files/usr/bin/est_client +++ b/feeds/tip/cloud_discovery/files/usr/bin/est_client @@ -9,7 +9,7 @@ import * as fs from 'fs'; ulog_open(ULOG_SYSLOG | ULOG_STDIO, LOG_DAEMON, "est_client"); function generate_csr(cert) { - if (!fs.stat('/rmp/csr.nohdr.p10')) { + if (!fs.stat('/tmp/csr.nohdr.p10')) { let pipe = fs.popen(`openssl x509 -in ${cert} -noout -subject`); let subject = pipe.read("all"); pipe.close();