~ubuntu-branches/ubuntu/vivid/openbox-menu/vivid

« back to all changes in this revision

Viewing changes to utils.c

  • Committer: Package Import Robot
  • Author(s): Mateusz Łukasik
  • Date: 2014-11-02 11:05:44 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20141102110544-ff0g1xovwvpg9s2z
Tags: 0.7.0-1
* New upstream release.
* debian/control:
  + Bump minimal menu-cache version to 0.7.
  + Bump Standards-Version to 3.9.6. (no changes needed)
* Remove debian/patches/fix_missing_double_quote.patch -- included
  upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                                g_string_append (cmd, ">");
52
52
                                break;
53
53
                        case '"':
54
 
                                g_string_append (cmd, "&quote;");
 
54
                                g_string_append (cmd, """);
55
55
                                break;
56
56
                        default:
57
57
                                g_string_append_c (cmd, *name);
81
81
{
82
82
        gchar *filepath = NULL;
83
83
        const char *exec = menu_cache_app_get_exec (MENU_CACHE_APP(app));
 
84
 
 
85
        g_return_val_if_fail(exec,"");
 
86
                
84
87
        GString *cmd = g_string_sized_new (64);
85
88
 
86
89
        for (;*exec; ++exec)