diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-04-19 16:15:14 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-04-19 16:15:14 +0000 |
commit | bf298a544ea03c7cf4b72dadb30c0f0d6bcf31cf (patch) | |
tree | 23bb594a887d9189bfb88fe341141297529a8acc /cs/demo/IceBox/hello/Client.cs | |
parent | removing client/server properties for IceSSL; refactoring Context classes (diff) | |
download | ice-bf298a544ea03c7cf4b72dadb30c0f0d6bcf31cf.tar.bz2 ice-bf298a544ea03c7cf4b72dadb30c0f0d6bcf31cf.tar.xz ice-bf298a544ea03c7cf4b72dadb30c0f0d6bcf31cf.zip |
separating client/server configuration; removing client/server properties
for IceSSL
Diffstat (limited to 'cs/demo/IceBox/hello/Client.cs')
-rw-r--r-- | cs/demo/IceBox/hello/Client.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/demo/IceBox/hello/Client.cs b/cs/demo/IceBox/hello/Client.cs index 2d70833885d..5195510df85 100644 --- a/cs/demo/IceBox/hello/Client.cs +++ b/cs/demo/IceBox/hello/Client.cs @@ -176,7 +176,7 @@ public class Client : Ice.Application public static void Main(string[] args) { Client app = new Client(); - int status = app.main(args, "config"); + int status = app.main(args, "config.client"); System.Environment.Exit(status); } } |