search for: reg_common_open_remote

Displaying 1 result from an estimated 1 matches for "reg_common_open_remote".

2009 Mar 23
0
regpatch problem ?
...is silentely ignored . The .reg file is correctly parsed. Did I missed something ? It looks like the file option is not used, so regpatch defaults to local registry, wich doesn't exists, as i'm using regpatch standalone What about something like that ? if (remote) { h = reg_common_open_remote (remote, ev_ctx, cmdline_lp_ctx, cmdline_credentials); + } else if (file != NULL) { + start_key = reg_common_open_file(file, ev_ctx, cmdline_lp_ctx, cmdline_credentials); } else { h = reg_common_open_local (cmdline_credentials, ev_ctx, cmdline_lp_ctx); } But the problem...