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 <[email protected]> + * Copyright (c) 2013-2016 Devin Teske <[email protected]> * 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); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
