Changeset 1971b59


Ignore:
Timestamp:
Mar 18, 2004, 9:43:40 AM (20 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:
f84bca8
Parents:
1bb1e67
Message:
Consistified function format
Put dashes in the version number
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    rafbf668 r1971b59  
    5959static const char owl_h_fileIdent[] = "$Id$";
    6060
    61 #define OWL_VERSION         2.1.6pre1
    62 #define OWL_VERSION_STRING "2.1.6pre1"
     61#define OWL_VERSION         2.1.6-pre-1
     62#define OWL_VERSION_STRING "2.1.6-pre-1"
    6363
    6464/* Feature that is being tested to redirect stderr through a pipe.
  • popexec.c

    r8721756 r1971b59  
    9090}
    9191
    92 void owl_popexec_inputhandler(int handle, int fd, int eventmask, void *data) {
     92void owl_popexec_inputhandler(int handle, int fd, int eventmask, void *data)
     93{
    9394  owl_popexec *pe = (owl_popexec*)data;
    9495  int navail, bread, rv_navail;
     
    165166}
    166167
    167 void owl_popexec_viewwin_onclose(owl_viewwin *vwin, void *data) {
     168void owl_popexec_viewwin_onclose(owl_viewwin *vwin, void *data)
     169{
    168170  owl_popexec *pe = (owl_popexec*)data;
    169171  int status, rv;
     
    186188}
    187189
    188 void owl_popexec_unref(owl_popexec *pe) {
     190void owl_popexec_unref(owl_popexec *pe)
     191{
    189192  owl_function_debugmsg("unref of %p was %d", pe, pe->refcount);
    190193  pe->refcount--;
  • zephyr.c

    r8ba37ec r1971b59  
    848848char *long_zuser(char *in)
    849849{
    850   char *ptr;
    851 
    852   if (NULL != (ptr=strchr(in, '@'))) {
    853     return owl_strdup(in);
    854   } else {
    855     return owl_sprintf("%s@%s", in, owl_zephyr_get_realm());
    856   }
    857 }
    858 
     850  if (strchr(in, '@')) {
     851    return(owl_strdup(in));
     852  }
     853  return(owl_sprintf("%s@%s", in, owl_zephyr_get_realm()));
     854}
    859855
    860856/* strip out the instance from a zsender's principal.  Preserves the
Note: See TracChangeset for help on using the changeset viewer.