Changeset 18105584


Ignore:
Timestamp:
Mar 16, 2009, 10:48:57 AM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
619d864
Parents:
19cc0b7e
Message:
zephyr: Don't give bogus error messages when adding subscriptions.

We were returning the value of an uninitalized 'ret' if we added
subscriptions to the deferred list instead of taking them
immediately. This primarily manifests as an occasional (false) error
suscribing to login messages at startup.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    ra5e7ed6 r18105584  
    191191int owl_zephyr_loadsubs_helper(ZSubscription_t subs[], int count)
    192192{
    193   int ret;
     193  int ret = 0;
    194194  if (owl_global_is_havezephyr(&g)) {
    195195    int i;
Note: See TracChangeset for help on using the changeset viewer.