Changes in / [2febcae:7b1d048]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r3617286 rfa4f9c3  
    17681768  char *recip="";
    17691769  int temp=0;
    1770   int ret=0;
    17711770 
    17721771  if (argc<3) {
     
    17981797  }
    17991798
    1800   ret = owl_function_subscribe(argv[0], argv[1], recip);
    1801   if (!temp && !ret) {
     1799  owl_function_subscribe(argv[0], argv[1], recip);
     1800  if (!temp) {
    18021801    owl_zephyr_addsub(NULL, argv[0], argv[1], recip);
    18031802  }
  • functions.c

    r3617286 r5376a95  
    13381338}
    13391339
    1340 int owl_function_subscribe(char *class, char *inst, char *recip)
     1340void owl_function_subscribe(char *class, char *inst, char *recip)
    13411341{
    13421342  int ret;
     
    13481348    owl_function_makemsg("Subscribed.");
    13491349  }
    1350   return(ret);
    13511350}
    13521351
Note: See TracChangeset for help on using the changeset viewer.