Changeset c23f678


Ignore:
Timestamp:
Jan 5, 2011, 10:09:12 AM (13 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
5f8ec6b
Parents:
719119de
git-author:
Nelson Elhage <nelhage@mit.edu> (01/04/11 09:46:58)
git-committer:
Nelson Elhage <nelhage@mit.edu> (01/05/11 10:09:12)
Message:
Don't use error_message if we are building without Zephyr.

That code path will never actually be executed if we don't have Zephyr, so let's
just '#ifdef' it out and remove the com_err dependency.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rd222c44 rc23f678  
    376376 * the message is expected to be set from the zwrite line itself
    377377 */
     378#ifdef HAVE_LIBZEPHYR
    378379void owl_function_zwrite(owl_zwrite *z, const char *msg)
    379380{
     
    410411  }
    411412}
     413#else
     414void owl_function_zwrite(owl_zwrite *z, const char *msg) {
     415}
     416#endif
    412417
    413418/* send, log and display an outgoing zcrypt zephyr.  If 'msg' is NULL
Note: See TracChangeset for help on using the changeset viewer.