Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 882805
Collapse All | Expand All

(-)a/ssh/key.vala (-1 / +1 lines)
Lines 230-236 public class Seahorse.Ssh.Key : Seahorse.Object, Seahorse.Exportable, Seahorse.D Link Here
230
     */
230
     */
231
    public static async KeyParseResult parse(string data,
231
    public static async KeyParseResult parse(string data,
232
                                             Cancellable? cancellable = null) throws GLib.Error {
232
                                             Cancellable? cancellable = null) throws GLib.Error {
233
        return_if_fail (data != null || data != "");
233
        return_val_if_fail (data != null || data != "", true);
234
234
235
        var pubkeys = new GenericArray<KeyData>();
235
        var pubkeys = new GenericArray<KeyData>();
236
        var seckeys = new GenericArray<SecData>();
236
        var seckeys = new GenericArray<SecData>();
(-)a/ssh/operation.vala (-1 / +1 lines)
Lines 49-55 public abstract class Operation : GLib.Object { Link Here
49
    protected async string? operation_async(string command,
49
    protected async string? operation_async(string command,
50
                                            string? input,
50
                                            string? input,
51
                                            Cancellable? cancellable) throws GLib.Error {
51
                                            Cancellable? cancellable) throws GLib.Error {
52
        return_val_if_fail (command != null && command != "", null);
52
        return_val_if_fail (command != null && command != "", false);
53
53
54
        // Strip the command name for logging purposes
54
        // Strip the command name for logging purposes
55
        string[] args;
55
        string[] args;

Return to bug 882805