Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/71983d527ea86da0e8c8e2195715b9ca55b0de13
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/71983d527ea86da0e8c8e2195715b9ca55b0de13
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/71983d527ea86da0e8c8e2195715b9ca55b0de13

The branch, master has been updated
       via  71983d527ea86da0e8c8e2195715b9ca55b0de13 (commit)
       via  54f01c7d7bb8a0b505ac6fabef252d332152f29d (commit)
      from  6c441fd4b1a8d9be2a84b4ea9ba2a4e90857be3e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=71983d527ea86da0e8c8e2195715b9ca55b0de13
commit 71983d527ea86da0e8c8e2195715b9ca55b0de13
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Tree compat layer: Fix assertion for multiple SSL cert windows.
    
    Use corewindow API rather than this compat layer to avoid the assertion.

diff --git a/desktop/tree.c b/desktop/tree.c
index 4972777..6acf179 100644
--- a/desktop/tree.c
+++ b/desktop/tree.c
@@ -129,10 +129,6 @@ static bool treeview_test_init(struct tree *tree)
 
        switch (tree->flags) {
        case TREE_COOKIES:
-               assert(ssl_current_session == NULL &&
-                       "Call sslcert_viewer_init directly, "
-                       "this compat. layer can't cope with simultanious "
-                       "sslcert viewers");
                err = cookie_manager_init(&cw_t, (struct core_window *)tree);
                if (err != NSERROR_OK)
                        guit->misc->warning("Couldn't init new cookie 
manager.", 0);
@@ -149,6 +145,10 @@ static bool treeview_test_init(struct tree *tree)
                        guit->misc->warning("Couldn't init new hotlist.", 0);
                break;
        case TREE_SSLCERT:
+               assert(ssl_current_session == NULL &&
+                       "Call sslcert_viewer_init directly, "
+                       "this compat. layer can't cope with simultanious "
+                       "sslcert viewers");
                err = sslcert_viewer_init(&cw_t, (struct core_window *)tree,
                                ssl_current_session);
                if (err != NSERROR_OK)


commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=54f01c7d7bb8a0b505ac6fabef252d332152f29d
commit 54f01c7d7bb8a0b505ac6fabef252d332152f29d
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    RISC OS: Remove unused function declaration.

diff --git a/frontends/riscos/sslcert.h b/frontends/riscos/sslcert.h
index 17fce55..514b519 100644
--- a/frontends/riscos/sslcert.h
+++ b/frontends/riscos/sslcert.h
@@ -28,7 +28,6 @@ struct node;
 
 void ro_gui_cert_preinitialise(void);
 void ro_gui_cert_postinitialise(void);
-void ro_gui_cert_open(struct tree *tree, struct node *node);
 
 #endif
 


-----------------------------------------------------------------------

Summary of changes:
 desktop/tree.c             |    8 ++++----
 frontends/riscos/sslcert.h |    1 -
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/desktop/tree.c b/desktop/tree.c
index 4972777..6acf179 100644
--- a/desktop/tree.c
+++ b/desktop/tree.c
@@ -129,10 +129,6 @@ static bool treeview_test_init(struct tree *tree)
 
        switch (tree->flags) {
        case TREE_COOKIES:
-               assert(ssl_current_session == NULL &&
-                       "Call sslcert_viewer_init directly, "
-                       "this compat. layer can't cope with simultanious "
-                       "sslcert viewers");
                err = cookie_manager_init(&cw_t, (struct core_window *)tree);
                if (err != NSERROR_OK)
                        guit->misc->warning("Couldn't init new cookie 
manager.", 0);
@@ -149,6 +145,10 @@ static bool treeview_test_init(struct tree *tree)
                        guit->misc->warning("Couldn't init new hotlist.", 0);
                break;
        case TREE_SSLCERT:
+               assert(ssl_current_session == NULL &&
+                       "Call sslcert_viewer_init directly, "
+                       "this compat. layer can't cope with simultanious "
+                       "sslcert viewers");
                err = sslcert_viewer_init(&cw_t, (struct core_window *)tree,
                                ssl_current_session);
                if (err != NSERROR_OK)
diff --git a/frontends/riscos/sslcert.h b/frontends/riscos/sslcert.h
index 17fce55..514b519 100644
--- a/frontends/riscos/sslcert.h
+++ b/frontends/riscos/sslcert.h
@@ -28,7 +28,6 @@ struct node;
 
 void ro_gui_cert_preinitialise(void);
 void ro_gui_cert_postinitialise(void);
-void ro_gui_cert_open(struct tree *tree, struct node *node);
 
 #endif
 


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to