Changeset 740 for vendor/current/source4/script/mkproto.pl
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/script/mkproto.pl
r414 r740 129 129 my ($file,$line) = @_; 130 130 131 if ($line =~ /^ _PUBLIC_FN_(GLOBAL|LOCAL)_(CONST_STRING|STRING|BOOL|bool|CHAR|INTEGER|LIST)\((\w+),.*\)/o) {131 if ($line =~ /^FN_(GLOBAL|LOCAL)_(CONST_STRING|STRING|BOOL|bool|CHAR|INTEGER|LIST)\((\w+),.*\)/o) { 132 132 my $scope = $1; 133 133 my $type = $2; … … 148 148 ); 149 149 150 $file->("$tmap{$type} $name($smap{$scope});\n");150 $file->("$tmap{$type}lpcfg_$name($smap{$scope});\n"); 151 151 } 152 152 } … … 191 191 next if ($line =~ /^\/|[;]/); 192 192 193 if ($line =~ /^ _PUBLIC_FN_/) {193 if ($line =~ /^FN_/) { 194 194 handle_loadparm($public_file, $line); 195 195 handle_loadparm($private_file, $line);
Note:
See TracChangeset
for help on using the changeset viewer.