Displaying 3 results from an estimated 3 matches for "execute_script".
2005 Mar 31
1
segfault in current svn
...247,10 @@
{
cp();
+ /* check if we have a subnet */
+ if (!subnet)
+ return false;
+
switch (subnet->type) {
case SUBNET_MAC:
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx",
@@ -421,10 +425,12 @@
}
} else {
if(net2str(netstr + 7, sizeof netstr - 7, subnet))
- execute_script(name, envp);
- }
+ execute_script(name, envp); }
+
+ /* do this only if we have a subnet (subnet != NULL) */
+ if(subnet)
+ net2str(netstr, sizeof netstr, subnet);
- net2str(netstr, sizeof netstr, subnet);
envp[6] = envp[7] = NULL;
for(i = 0; i < (owner != myself ? 6 : 4); i++)
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...tus.validkey = false;
- n->status.waitingforkey = false;
+ n->status.st.validkey = false;
+ n->status.st.waitingforkey = false;
n->maxmtu = MTU;
n->minmtu = 0;
@@ -292,10 +292,10 @@
asprintf(&envp[5], "REMOTEPORT=%s", port);
envp[6] = NULL;
- execute_script(n->status.reachable ? "host-up" : "host-down", envp);
+ execute_script(n->status.st.reachable ? "host-up" : "host-down", envp);
asprintf(&name,
- n->status.reachable ? "hosts/%s-up" : "hosts/%s-down",
+ n->...
2014 Nov 14
0
Wine release 1.7.31
...n.
Guillaume Charifi (1):
oleaut32: Implement TLB dependencies lookup in resources.
Hans Leidekker (6):
msi: Pass a database pointer to msi_clone_properties instead of a package pointer.
msi: Update properties after each transform that affects the property table.
msi: Call execute_script directly in InstallFinalize.
advapi32: Return success from LsaAddAccountRights.
server: Set the security descriptor of named pipe objects.
odbc32: Add a version resource.
Henri Verbeet (14):
d3d10core: Implement d3d10_device_ClearState().
d3d10core/tests: Add a test f...