Changeset 109eb89


Ignore:
Timestamp:
Apr 5, 2013, 3:29:00 PM (11 years ago)
Author:
David Benjamin <davidben@mit.edu>
Parents:
89f01bd (diff), 60e8617 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge 60e8617904bd9d4cfd97f15d5ec92e713962db99 into 89f01bd9823da865a9b70dc55e7910ef2944fb0a
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r05adccf r60e8617  
    855855void owl_function_unsuball(void)
    856856{
    857   unsuball();
    858   owl_function_makemsg("Unsubscribed from all messages.");
     857  if (unsuball())
     858    owl_function_makemsg("Unsubscribed from all messages.");
    859859}
    860860
  • zephyr.c

    r89f01bd r60e8617  
    455455}
    456456
    457 void unsuball(void)
     457bool unsuball(void)
    458458{
    459459#if HAVE_LIBZEPHYR
     
    465465    owl_function_error("Zephyr: Cancelling subscriptions: %s",
    466466                       error_message(ret));
    467 #endif
     467  return (ret == ZERR_NONE);
     468#endif
     469  return true;
    468470}
    469471
Note: See TracChangeset for help on using the changeset viewer.