Changeset e20dd769


Ignore:
Timestamp:
Jun 1, 2010, 8:27:39 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
5b80b87
Parents:
04d76ef
Message:
Actually construct the notifier and avoid invalid property names

-follow is not a valid property name.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • global.c

    r04d76ef re20dd769  
    88#include <time.h>
    99#include "owl.h"
     10#include "globalnotifier.h"
    1011
    1112#ifndef MAXHOSTNAMELEN
     
    1718  char hostname[MAXHOSTNAMELEN];
    1819  char *cd;
     20  g->gn = owl_global_notifier_new(g);
    1921
    2022  g->malloced=0;
  • globalnotifiergen.pl

    r04d76ef re20dd769  
    1818        my $detailname = $altvarname;
    1919        $detailname =~ s/[^a-zA-Z0-9]/-/g;
     20        $detailname =~ s/^[^a-zA-Z]+//;
    2021
    2122        push @vars, {type => $vartype,
  • stubgen.pl

    rf57a106 re20dd769  
    1414    my $detailname = $altvarname;
    1515    $detailname =~ s/[^a-zA-Z0-9]/-/g;
     16    $detailname =~ s/^[^a-zA-Z]+//;
    1617    if ($vartype =~ /^BOOL/) {
    1718        print <<EOT;
Note: See TracChangeset for help on using the changeset viewer.