Author: pjd
Date: Mon Mar 21 08:37:50 2011
New Revision: 219816
URL: http://svn.freebsd.org/changeset/base/219816

Log:
  Use snprlcat() instead of two strlcat(3)s.
  
  MFC after:    1 week

Modified:
  head/sbin/hastd/hooks.c

Modified: head/sbin/hastd/hooks.c
==============================================================================
--- head/sbin/hastd/hooks.c     Mon Mar 21 08:36:50 2011        (r219815)
+++ head/sbin/hastd/hooks.c     Mon Mar 21 08:37:50 2011        (r219816)
@@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$");
 #include <pjdlog.h>
 
 #include "hooks.h"
+#include "subr.h"
 #include "synch.h"
 
 /* Report processes that are running for too long not often than this value. */
@@ -184,8 +185,8 @@ hook_alloc(const char *path, char **args
        (void)strlcpy(hp->hp_comm, path, sizeof(hp->hp_comm));
        /* We start at 2nd argument as we don't want to have exec name twice. */
        for (ii = 1; args[ii] != NULL; ii++) {
-               (void)strlcat(hp->hp_comm, " ", sizeof(hp->hp_comm));
-               (void)strlcat(hp->hp_comm, args[ii], sizeof(hp->hp_comm));
+               (void)snprlcat(hp->hp_comm, sizeof(hp->hp_comm), " %s",
+                   args[ii]);
        }
        if (strlen(hp->hp_comm) >= sizeof(hp->hp_comm) - 1) {
                pjdlog_error("Exec path too long, correct configuration file.");
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to