diff options
author | Siri Hansen <[email protected]> | 2011-06-15 10:20:14 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-06-15 10:20:14 +0200 |
commit | bcb07ea53beca828b628f3744096eddb9d5923a8 (patch) | |
tree | 6b5dd2dbd6efade7e3868d49868c3b33af95cb70 /erts/etc/win32/Install.c | |
parent | 287633fc183bbd95acea6ba6b9722c9c246dc7ea (diff) | |
parent | e751eb8d6e8fd5945d4a14ebbc10b9cd858521e1 (diff) | |
download | otp-bcb07ea53beca828b628f3744096eddb9d5923a8.tar.gz otp-bcb07ea53beca828b628f3744096eddb9d5923a8.tar.bz2 otp-bcb07ea53beca828b628f3744096eddb9d5923a8.zip |
Merge branch 'siri/sasl/release_handler-windows/OTP-9306' into dev
* siri/sasl/release_handler-windows/OTP-9306:
Make release_handler work with windows services
Diffstat (limited to 'erts/etc/win32/Install.c')
-rw-r--r-- | erts/etc/win32/Install.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/erts/etc/win32/Install.c b/erts/etc/win32/Install.c index 6e60512f6d..d680b67dd6 100644 --- a/erts/etc/win32/Install.c +++ b/erts/etc/win32/Install.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 2003-2010. All Rights Reserved. + * Copyright Ericsson AB 2003-2011. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -213,6 +213,9 @@ int main(int argc, char **argv) fprintf(stderr,"Cannot continue installation, bailing out.\n"); exit(1); } + + /* OBS!!! If the format of the init file is changed, do not forget + to update release_handler:write_ini_file(...) */ ini_file = create_init_file(); ini_section = create_init_section("erlang"); add_init_section(ini_file,ini_section); |