Commit 094ac81b6c6b6426dc692aefc75cc91fc95d4483

Authored by perry.werneck@gmail.com
1 parent d4640967

Testando em windows

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
src/pw3270/common/config.c
... ... @@ -53,7 +53,7 @@
53 53  
54 54 #ifdef WIN_REGISTRY_ENABLED
55 55  
56   - static const gchar *registry_path = "SOFTWARE\\";
  56 + static const gchar *registry_path = "SOFTWARE";
57 57  
58 58 #else
59 59  
... ...
src/pw3270/main.c
... ... @@ -143,8 +143,8 @@ int main(int argc, char *argv[])
143 143 {
144 144 static const GOptionEntry app_options[] =
145 145 {
146   - { "appname", 'a', 0, G_OPTION_ARG_STRING, &appname, N_( "Application name" ), PACKAGE_NAME },
147   - { "host", 'h', 0, G_OPTION_ARG_STRING, &host, N_( "Host to connect"), NULL },
  146 + { "appname", 'a', 0, G_OPTION_ARG_STRING, &appname, N_( "Application name" ), PACKAGE_NAME },
  147 + { "host", 'h', 0, G_OPTION_ARG_STRING, &host, N_( "Host to connect"), NULL },
148 148 { NULL }
149 149 };
150 150  
... ...