Changeset 601a9e0 for owl.c


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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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 
Note: See TracChangeset for help on using the changeset viewer.