Changeset c4ba74d for perlconfig.c


Ignore:
Timestamp:
Aug 21, 2008, 12:52:04 AM (16 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
38a7f22
Parents:
aef51f8
Message:
Make BarnOwl::command() accept a pre-tokenized command.

If given more than one argument, BarnOwl::command now treats the
arguments as an argv list to execute the command with. Previously it
only accepted a single argument, so this should not change the
behavior of any existing code.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlconfig.c

    r0f9eca7 rc4ba74d  
    181181{
    182182  dSP ;
    183   int count, len;
     183  int count;
     184  unsigned int len;
    184185  SV *msgref, *srv;
    185186  char *out, *preout;
     
    457458  if(SvTRUE(ERRSV)) {
    458459    owl_function_error("%s", SvPV(ERRSV, n_a));
    459     POPs;
     460    (void)POPs;
    460461  } else {
    461462    if(count != 1)
Note: See TracChangeset for help on using the changeset viewer.