mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

davidely
08.08.2007 4c8d03d9bd49951050fab58c14d24e957b6c7495
refs
author davidely <davidely@localhost>
Tuesday, May 8, 2007 00:08 +0200
committer davidely <davidely@localhost>
Tuesday, May 8, 2007 00:08 +0200
commit4c8d03d9bd49951050fab58c14d24e957b6c7495
tree 387d73f1ec354dbadf0c975410ec77bdbd5c1e18 tree | zip | gz
parent 6467c2e476b1db85e6216ca1415bc48934d06c7d view | diff
This checkin includes a few changes, but the only real problem that I saw was here:

- debug("Deleting the service '%s'.");
+ debug("Deleting the service '%s'.", serviceName);

Which was causing the process to core on uninstall. So I went through the other debug messages, and made a few more changes that most likely wouldn't have caused problems. For instance,

- debug("doStartApplication: spawn failed. Sent command:");
- debug(command);
+ debug("doStartApplication: spawn failed. Sent command: '%s'", command);

Technically, command could include a format directive (e.g. %s) in which case we'd have the same problem as debug("Deleting the service '%s'."), but this is unlikely. There are also a few other debug messages that I added to track down the real problem, and I've left them in.
4 files modified
19 ■■■■■ changed files
opendj-sdk/opends/lib/opends_service.exe diff | view | raw | blame | history
opendj-sdk/opends/lib/winlauncher.exe diff | view | raw | blame | history
opendj-sdk/opends/src/build-tools/windows/service.c 15 ●●●●● diff | view | raw | blame | history
opendj-sdk/opends/src/build-tools/windows/winlauncher.c 4 ●●●● diff | view | raw | blame | history