Changeset 745 for trunk/server/source4/script/mkproto.pl
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/script/mkproto.pl
r414 r745 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.