Changeset 9381782 for functions.c


Ignore:
Timestamp:
Jun 22, 2003, 1:33:09 AM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
b2a91b6
Parents:
0c502e9
Message:
$owl::auth now works
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r0c502e9 r9381782  
    13151315
    13161316      owl_fmtext_append_normal(&fm,    "  Auth      : ");
    1317       if (n->z_auth == ZAUTH_FAILED) {
    1318         owl_fmtext_append_normal(&fm, "FAILED\n");
    1319       } else if (n->z_auth == ZAUTH_NO) {
    1320         owl_fmtext_append_normal(&fm, "NO\n");
    1321       } else if (n->z_auth == ZAUTH_YES) {
    1322         owl_fmtext_append_normal(&fm, "YES\n");
    1323       } else {
    1324         sprintf(buff, "Unknown State (%i)\n", n->z_auth);
    1325         owl_fmtext_append_normal(&fm, buff);
    1326       }
     1317      owl_fmtext_append_normal(&fm, owl_zephyr_get_authstr(n));
     1318      owl_fmtext_append_normal(&fm, "\n");
    13271319
    13281320      /* fix this */
Note: See TracChangeset for help on using the changeset viewer.