Changes in / [99219ed:ee310eb]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fmtext.c

    r005fc22 raf1920fd  
    536536  }
    537537  dst->textlen=src->textlen;
    538   dst->bufflen=mallocsize;
    539538  dst->textbuff=owl_malloc(mallocsize);
    540539  memcpy(dst->textbuff, src->textbuff, src->textlen+1);
  • variable.c

    r247cbc9 raf1920fd  
    208208               "messages.  It will not be run again until the first\n"
    209209               "instance exits"),
    210 
    211   OWLVAR_STRING( "zsender" /* %OwlVarStub */, "",
    212              "zephyr sender name",
    213          "Allows you to customize the outgoing username in\n"
    214          "zephyrs.  If this is unset, it will use your Kerberos\n"
    215          "principal. Note that customizing the sender name will\n"
    216          "cause your zephyrs to be sent unauthenticated."),
    217210
    218211  OWLVAR_STRING( "zsig" /* %OwlVarStub */, "",
  • zephyr.c

    r247cbc9 r10e3963  
    539539  }
    540540  notice.z_default_format="Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2";
    541   if (*owl_global_get_zsender(&g))
    542       notice.z_sender=owl_global_get_zsender(&g);
    543   else
    544       notice.z_sender=NULL;
     541  notice.z_sender=NULL;
    545542  if (opcode) notice.z_opcode=opcode;
    546543
Note: See TracChangeset for help on using the changeset viewer.