openbsd-ports/sysutils/nut/patches/patch-drivers_mge-utalk_c
marcm 85dc249d41 Update to 1.4.1.
In addition to the standard bugfixes, this is a major port rewrite.
The port now uses a '_ups' user and the CGIs created can now run under
either chrooted Apache or non-chrooted Apache.
2004-02-09 06:48:48 +00:00

15 lines
607 B
Plaintext

$OpenBSD: patch-drivers_mge-utalk_c,v 1.1 2004/02/09 06:48:48 marcm Exp $
--- drivers/mge-utalk.c.orig 2003-06-11 01:57:41.000000000 -0700
+++ drivers/mge-utalk.c 2004-01-03 10:54:04.000000000 -0800
@@ -467,8 +467,8 @@ int setvar(const char *varname, const ch
if(info_variable_ok(varname)) {
/* format command */
- sprintf(cmd, "%s", info_variable_cmd(varname));
- sprintf(strchr(cmd, '?'), "%s", val);
+ snprintf(cmd, sizeof (cmd), "%s", info_variable_cmd(varname));
+ snprintf(strchr(cmd, '?'), sizeof (cmd), "%s", val);
/* Execute command */
mge_command(temp, sizeof(temp), cmd);