svn commit: r293620 - stable/10/lib/libdpv

Devin Teske dteske at FreeBSD.org
Sat Jan 9 23:44:42 UTC 2016


Author: dteske
Date: Sat Jan  9 23:44:41 2016
New Revision: 293620
URL: https://svnweb.freebsd.org/changeset/base/293620

Log:
  MFC SVN revisions 293340, 293379
  
  r293340: Increase maximum buffer size for `-x cmd' value
  r293379: Bump copyright

Modified:
  stable/10/lib/libdpv/util.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libdpv/util.h
==============================================================================
--- stable/10/lib/libdpv/util.h	Sat Jan  9 23:33:44 2016	(r293619)
+++ stable/10/lib/libdpv/util.h	Sat Jan  9 23:44:41 2016	(r293620)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2013-2014 Devin Teske <dteske at FreeBSD.org>
+ * Copyright (c) 2013-2016 Devin Teske <dteske at FreeBSD.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -41,7 +41,7 @@
 #define PATH_SHELL	"/bin/sh"
 #endif
 
-#define CMDBUFMAX	4096
+#define CMDBUFMAX	65536
 
 __BEGIN_DECLS
 int	shell_spawn_pipecmd(const char *_cmd, const char *_label, pid_t *_pid);


More information about the svn-src-all mailing list