1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[214141] Avoid NPE if missing SYST command

This commit is contained in:
Martin Oberhuber 2009-03-19 22:04:12 +00:00
parent 3db44ba3b2
commit 19da40a4dc
2 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,5 @@
############################################################################### ###############################################################################
# Copyright (c) 2006, 2007 IBM Corporation and others. # Copyright (c) 2006, 2009 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0 # are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
@ -12,7 +12,7 @@
# Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. # Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
# #
# Contributors: # Contributors:
# {Name} (company) - description of contribution. # Martin Oberhuber (Wind River) - [214141] Avoid NPE if missing SYST command
############################################################################### ###############################################################################
# NLS_MESSAGEFORMAT_NONE # NLS_MESSAGEFORMAT_NONE
@ -36,3 +36,4 @@ FTPParser.WinNT=WinNT
FTPParser.OS2=OS2 FTPParser.OS2=OS2
FTPParser.OS400=OS400 FTPParser.OS400=OS400
FTPParser.VMS=VMS FTPParser.VMS=VMS
FTPParser.UNIXDefault=UNIX Default

View file

@ -20,6 +20,7 @@ Martin Oberhuber (Wind River) - [186523] Move subsystemConfigurations from UI to
Javier Montalvo Orus (Symbian) - improved autodetection of FTPListingParser Javier Montalvo Orus (Symbian) - improved autodetection of FTPListingParser
Martin Oberhuber (Wind River) - [198692] Use FTP LIST -a to list UNIX hidden files Martin Oberhuber (Wind River) - [198692] Use FTP LIST -a to list UNIX hidden files
Javier Montalvo Orus (Symbian) - [225821] [ftp] opening "/home" fails on OS/400 IFS Javier Montalvo Orus (Symbian) - [225821] [ftp] opening "/home" fails on OS/400 IFS
Martin Oberhuber (Wind River) - [214141] Avoid NPE if missing SYST command
--> -->
<?eclipse version="3.1"?> <?eclipse version="3.1"?>
<plugin> <plugin>
@ -97,6 +98,15 @@ Javier Montalvo Orus (Symbian) - [225821] [ftp] opening "/home" fails on OS/400
label="%FTPParser.VMS" label="%FTPParser.VMS"
priority="100"> priority="100">
</parser> </parser>
<!-- Bug 214141: Default parser if nothing matches is Unix -->
<parser
class="org.apache.commons.net.ftp.parser.UnixFTPEntryParser"
id="org.eclipse.rse.ftp.parser.UnixDefault"
label="%FTPParser.UNIXDefault"
listCommandModifiers="-a"
priority="10000"
systemTypeRegex=".*">
</parser>
</extension> </extension>
</plugin> </plugin>