New commits:
commit b6e3cad159cc1ef02531bc2b7ac5a08bbdfdd22b
Author: Andrew Cagney <[email protected]>
Date:   Thu Nov 3 14:24:09 2016 -0400

    lib: re-implement pexpect_log()
    
    So that this:
    
        pexpect(a->foo != NULL);
        if (a->foo == NULL) {
            loglog(SERIOUS, "foo is NULL in %s", a->name);
            /* recover */
            return;
        }
    
    can be reduced to this:
    
        if (a->foo == NULL) {
            PEXPECT_LOG("foo is NULL in %s", a->name);
            /* recover */
            return;
        }

_______________________________________________
Swan-commit mailing list
[email protected]
https://lists.libreswan.org/mailman/listinfo/swan-commit

Reply via email to