| 84 | } |
| 85 | |
| 86 | static void log_argv(const char *procname, ACL_ARGV *args) |
| 87 | { |
| 88 | ACL_ITER iter; |
| 89 | ACL_VSTRING *buf = acl_vstring_alloc(128); |
| 90 | |
| 91 | acl_foreach(iter, args) { |
| 92 | acl_vstring_strcat(buf, " "); |
| 93 | acl_vstring_strcat(buf, (char*) iter.data); |
| 94 | } |
| 95 | |
| 96 | acl_msg_info("%s %s", procname, acl_vstring_str(buf)); |
| 97 | acl_vstring_free(buf); |
| 98 | } |
| 99 | |
| 100 | /* acl_master_spawn - spawn off new child process if we can */ |
| 101 |
no test coverage detected
searching dependent graphs…