Use service instead of certificate
authorAlberto Ruiz <aruiz@gnome.org>
Tue, 19 Jul 2011 10:54:00 +0000 (11:54 +0100)
committerAlberto Ruiz <aruiz@gnome.org>
Tue, 19 Jul 2011 16:33:49 +0000 (17:33 +0100)
src/moonshot-identity-request.vala

index 17f8b5e..048e47d 100644 (file)
@@ -8,19 +8,19 @@ class IdentityRequest : Object {
     private MainWindow main_window;
     private string nai;
     private string password;
-    private string certificate;
+    private string service;
 
     ReturnIdentityCallback callback = null;
 
     public IdentityRequest (MainWindow                   main_window,
                             string                       nai,
                             string                       password,
-                            string                       certificate)
+                            string                       service)
     {
         this.main_window = main_window;
         this.nai = nai;
         this.password = password;
-        this.certificate = certificate;
+        this.service = service;
     }
 
     public IdentityRequest.default (MainWindow main_window)