Changeset 601a9e0


Ignore:
Timestamp:
Sep 24, 2002, 3:47:23 PM (22 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:
700c712
Parents:
5a6e6b9
Message:
Patch to fix memory bug in replying to CC messages
If we're on Athena and have static krb (or other) libraries, use
  them
Added "athstatic" program to the release, which handles the above
Cast to an int for isspace, to make gcc -Wall quiet
Added 'zlist' and 'l' to basic help.
Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5a6e6b9 r601a9e0  
    11$Id$
     21.2.5
     3        Patch to fix memory bug in replying to CC messages
     4        If we're on Athena and have static krb (or other) libraries, use
     5          them
     6        Added "athstatic" program to the release, which handles the above
     7        Cast to an int for isspace, to make gcc -Wall quiet
     8        Added 'zlist' and 'l' to basic help.
     9       
    2101.2.4
    311        'zlog in' will now take an optional thrid argument to set the
  • Makefile.in

    r8ee73f8d r601a9e0  
    1818
    1919owl: $(AUTOGEN) $(OBJS) owl.o
    20         $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS)
     20        ./athstatic $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS)
    2121
    2222tester: $(AUTOGEN) $(OBJS) tester.o
  • configure

    rf9c43ae r601a9e0  
    763763echo "configure:764: checking for /usr/athena/lib" >&5
    764764if test -d /usr/athena/lib; then
    765         LDFLAGS=-L/usr/athena/lib\ -R/usr/athena/lib\ ${LDFLAGS}
     765        LDFLAGS=-L/usr/athena/lib\ ${LDFLAGS}
    766766        echo "$ac_t""yes" 1>&6
    767767else
  • configure.in

    rf9c43ae r601a9e0  
    2222AC_MSG_CHECKING(for /usr/athena/lib)
    2323if test -d /usr/athena/lib; then
    24         LDFLAGS=-L/usr/athena/lib\ -R/usr/athena/lib\ ${LDFLAGS}
     24        LDFLAGS=-L/usr/athena/lib\ ${LDFLAGS}
    2525        AC_MSG_RESULT(yes)
    2626else
  • editwin.c

    rf2e36b5 r601a9e0  
    804804      return(1);
    805805    }
    806     if (!isspace(e->buff[i])) {
     806    if (!isspace((int) e->buff[i])) {
    807807      return(0);
    808808    }
  • functions.c

    r5a6e6b9 r601a9e0  
    16011601      if (*to != '\0') {
    16021602        char *tmp, *oldtmp, *tmp2;
     1603        tmp=short_zuser(to);
    16031604        if (cc) {
    16041605          tmp = owl_util_uniq(oldtmp=tmp, cc, "-");
     
    16071608          owl_free(oldbuff);
    16081609        } else {
    1609           tmp=short_zuser(to);
    16101610          if (owl_global_is_smartstrip(&g)) {
    16111611            tmp2=tmp;
  • help.c

    rbde7714 r601a9e0  
    5858     "    v             Start a view command\n"
    5959     "\n"
     60     "    l             Print a list of users in .anyone that are logged in\n"
    6061     "    A             Toggle zaway\n"
    6162     "    w             Open a URL in the message in netscape\n"
     
    8586     "    getsubs       Print a list of current subscriptions\n"
    8687     "    zlocate       Locate a user\n"
     88     "    zlist         Print a list of users in .anyone that are logged in\n"
    8789     "    info          Print detailed information about the current message\n"
    8890     "    filter        Create a message filter\n"
  • owl.c

    r5a6e6b9 r601a9e0  
    208208
    209209  /* welcome message */
    210   sprintf(buff, "Welcome to owl version %s.\n", OWL_VERSION_STRING);
    211210  strcpy(startupmsg, "-------------------------------------------------------------------------\n");
     211  sprintf(buff,      "Welcome to owl version %s.  Press 'h' for on line help. \n", OWL_VERSION_STRING);
    212212  strcat(startupmsg, buff);
    213   strcat(startupmsg, "Press 'h' for on line help.                                   ^ ^        \n");
    214   strcat(startupmsg, "                                                              OvO        \n");
    215   strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu     (   )       \n");
    216   strcat(startupmsg, "--------------------------------------------------------------m-m--------\n");
     213  strcat(startupmsg, "                                                                         \n");
     214  strcat(startupmsg, "If you would like to receive release announcments about owl you can join \n");
     215  strcat(startupmsg, "the owl-users@mit.edu mailing list.  MIT users can add themselves,       \n");
     216  strcat(startupmsg, "otherwise send a request to owner-owl-users@mit.edu.               ^ ^   \n");
     217  strcat(startupmsg, "                                                                   OvO   \n");
     218  strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu          (   )  \n");
     219  strcat(startupmsg, "-------------------------------------------------------------------m-m---\n");
    217220 
    218221  owl_function_adminmsg("", startupmsg);
    219   /* owl_function_makemsg(buff); */
    220222  sepbar(NULL);
    221223 
  • owl.h

    r425c013 r601a9e0  
    1212static const char owl_h_fileIdent[] = "$Id$";
    1313
    14 #define OWL_VERSION         1.2.4
    15 #define OWL_VERSION_STRING "1.2.4"
     14#define OWL_VERSION         1.2.5
     15#define OWL_VERSION_STRING "1.2.5"
    1616
    1717#define OWL_DEBUG 0
Note: See TracChangeset for help on using the changeset viewer.