From f74a71fdd41a8a332c67702b7ae3674dc8c7ffd8 Mon Sep 17 00:00:00 2001 From: Greg Alexander Date: Sat, 18 Jun 2016 16:06:10 -0400 Subject: [PATCH] cast away the const on DROPBEAR_PIDFILE to get rid of the last warning. that's it for warnings. --- dropbear/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropbear/options.h b/dropbear/options.h index 316c612..8dbc8e8 100644 --- a/dropbear/options.h +++ b/dropbear/options.h @@ -257,7 +257,7 @@ much traffic. */ /* The default file to store the daemon's process ID, for shutdown scripts etc. This can be overridden with the -P flag */ -#define DROPBEAR_PIDFILE conf_path_file("dropbear.pid") +#define DROPBEAR_PIDFILE ((char *)conf_path_file("dropbear.pid")) /* The command to invoke for xauth when using X11 forwarding. * "-q" for quiet */