This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 198921
Collapse All | Expand All

(-)a/keyring.impl/src/org/netbeans/modules/keyring/gnome/GnomeKeyringLibrary.java (-1 / +1 lines)
Lines 77-83 Link Here
77
            String display_name,
77
            String display_name,
78
            /*GnomeKeyringAttributeList*/Pointer attributes,
78
            /*GnomeKeyringAttributeList*/Pointer attributes,
79
            String secret,
79
            String secret,
80
            boolean update_if_exists,
80
            int update_if_exists,
81
            int[] item_id);
81
            int[] item_id);
82
82
83
    int gnome_keyring_item_delete_sync(
83
    int gnome_keyring_item_delete_sync(
(-)a/keyring.impl/src/org/netbeans/modules/keyring/gnome/GnomeProvider.java (-1 / +1 lines)
Lines 135-141 Link Here
135
            LIBRARY.gnome_keyring_attribute_list_append_string(attributes, KEY, key);
135
            LIBRARY.gnome_keyring_attribute_list_append_string(attributes, KEY, key);
136
            int[] item_id = new int[1];
136
            int[] item_id = new int[1];
137
            error(GnomeKeyringLibrary.LIBRARY.gnome_keyring_item_create_sync(
137
            error(GnomeKeyringLibrary.LIBRARY.gnome_keyring_item_create_sync(
138
                    null, GNOME_KEYRING_ITEM_GENERIC_SECRET, description != null ? description : key, attributes, new String(password), true, item_id));
138
                    null, GNOME_KEYRING_ITEM_GENERIC_SECRET, description != null ? description : key, attributes, new String(password), 1, item_id));
139
        } finally {
139
        } finally {
140
            LIBRARY.gnome_keyring_attribute_list_free(attributes);
140
            LIBRARY.gnome_keyring_attribute_list_free(attributes);
141
        }
141
        }

Return to bug 198921