From 5467d67f2a54c6d6efe407b10053e06067147a37 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 11 Jul 2011 19:15:57 +0000 Subject: In version_info.c, assume we always have the "matches" operator. In capture_opts.c, assume our output filename has been passed through arg_list_utf_16to8(). svn path=/trunk/; revision=37974 --- capture_opts.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'capture_opts.c') diff --git a/capture_opts.c b/capture_opts.c index 7eb135ced0..4cd142fafb 100644 --- a/capture_opts.c +++ b/capture_opts.c @@ -697,12 +697,6 @@ capture_opts_add_opt(capture_options *capture_opts, int opt, const char *optarg_ case 'w': /* Write to capture file x */ capture_opts->saving_to_file = TRUE; g_free(capture_opts->save_file); -#if defined _WIN32 && GLIB_CHECK_VERSION(2,6,0) - /* since GLib 2.6, we need to convert filenames to utf8 for Win32 */ - capture_opts->save_file = g_locale_to_utf8(optarg_str_p, -1, NULL, NULL, NULL); -#else - capture_opts->save_file = g_strdup(optarg_str_p); -#endif status = capture_opts_output_to_pipe(capture_opts->save_file, &capture_opts->output_to_pipe); return status; case 'g': /* enable group read access on the capture file(s) */ -- cgit v1.2.3