Changeset 1971b59
- Timestamp:
- Mar 18, 2004, 9:43:40 AM (21 years ago)
- 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
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
owl.h
rafbf668 r1971b59 59 59 static const char owl_h_fileIdent[] = "$Id$"; 60 60 61 #define OWL_VERSION 2.1.6 pre162 #define OWL_VERSION_STRING "2.1.6 pre1"61 #define OWL_VERSION 2.1.6-pre-1 62 #define OWL_VERSION_STRING "2.1.6-pre-1" 63 63 64 64 /* Feature that is being tested to redirect stderr through a pipe. -
popexec.c
r8721756 r1971b59 90 90 } 91 91 92 void owl_popexec_inputhandler(int handle, int fd, int eventmask, void *data) { 92 void owl_popexec_inputhandler(int handle, int fd, int eventmask, void *data) 93 { 93 94 owl_popexec *pe = (owl_popexec*)data; 94 95 int navail, bread, rv_navail; … … 165 166 } 166 167 167 void owl_popexec_viewwin_onclose(owl_viewwin *vwin, void *data) { 168 void owl_popexec_viewwin_onclose(owl_viewwin *vwin, void *data) 169 { 168 170 owl_popexec *pe = (owl_popexec*)data; 169 171 int status, rv; … … 186 188 } 187 189 188 void owl_popexec_unref(owl_popexec *pe) { 190 void owl_popexec_unref(owl_popexec *pe) 191 { 189 192 owl_function_debugmsg("unref of %p was %d", pe, pe->refcount); 190 193 pe->refcount--; -
zephyr.c
r8ba37ec r1971b59 848 848 char *long_zuser(char *in) 849 849 { 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 } 859 855 860 856 /* strip out the instance from a zsender's principal. Preserves the
Note: See TracChangeset
for help on using the changeset viewer.