Changeset 450 for branches/guitools-2.0/shared
- Timestamp:
- Apr 26, 2010, 4:51:52 PM (15 years ago)
- Location:
- branches/guitools-2.0/shared
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-2.0/shared/nlv.vrs
r410 r450 69 69 if nlvmsg.0 = 1 then do 70 70 say " Found NLV "Suffix" file in subdirectory" 71 settings.!messages = VRParseFilename(nlvmsg.1,"DPN")'.msg'71 NLVFile = VRParseFilename(nlvmsg.1,"DPN")'.'Suffix 72 72 say " Adding NLV "Suffix" path to "PathVar 73 73 OldPathVar = value(PathVar,,"OS2ENVIRONMENT") … … 128 128 PARSE VAR msgtxt message '0D'x . 129 129 130 IF translate(SUBSTR( message, 1, 4 )) == 'SYS0' THEN message = ' '130 IF translate(SUBSTR( message, 1, 4 )) == 'SYS0' THEN message = '[Missing message 'msgnum'!]' 131 131 132 132 RETURN message -
branches/guitools-2.0/shared/rxrpclib.vrs
r405 r450 344 344 leave 345 345 end 346 if pos("TDB(", translate(rpcline)) > 0 then do 347 Failure = 1 348 /* provide a fake NT_STATUS */ 349 rpcline = 'NT_STATUS_TDBERROR 'rpcline 350 leave 351 end 352 346 353 parse var rpcline token ':' tvalue 347 354 token = translate(strip(strip(translate(token),'L','09'x)),'_',' ') -
branches/guitools-2.0/shared/smbtree.vrs
r393 r450 175 175 smbmachine = TempDir||"smbmachine."||machine 176 176 177 if UserCred = 'USERCRED' | UserCred = '' | UserCred = '--user=%' then UserCred = '-N' 178 177 179 say ' detach 'samba.!smbclientexe' -L "'strip(machine)'" 'UserCred' 'debuglevel' 1>'smbmachine' 2>NUL' 178 180 address cmd 'detach 'samba.!smbclientexe' -L "'strip(machine)'" 'UserCred' 'debuglevel' 1>'smbmachine' 2>NUL' 181 182 if UserCred = '-N' then UserCred = '' 179 183 180 184 RefreshMode = "SHARE" … … 259 263 260 264 select 261 when type = "DISK" then res = '# 34:PMWP.DLL'265 when type = "DISK" then res = '#64:PMWP.DLL' 262 266 when type = "PRINTER" then res = '#65:PMWP.DLL' 263 267 when type = "IPC" then res = '#59:PMWP.DLL' … … 306 310 else say ' Got "'stat'" for "'smbmachine.I'"' 307 311 end 312 313 if UserCred = '-N' then UserCred = '' 314 308 315 say time()' _AddSharesDisplay() loop end' 309 316 return
Note:
See TracChangeset
for help on using the changeset viewer.