diff options
Diffstat (limited to 'packet-ftp.c')
-rw-r--r-- | packet-ftp.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packet-ftp.c b/packet-ftp.c index c49a6d6745..4b449ec4ce 100644 --- a/packet-ftp.c +++ b/packet-ftp.c @@ -2,25 +2,25 @@ * Routines for ftp packet dissection * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * Copyright 2001, Juan Toledo <toledo@users.sourceforge.net> (Passive FTP) - * - * $Id: packet-ftp.c,v 1.48 2002/08/02 23:35:49 jmayer Exp $ + * + * $Id: packet-ftp.c,v 1.49 2002/08/28 21:00:13 jmayer Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> * Copyright 1998 Gerald Combs * * Copied from packet-pop.c - * + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -141,7 +141,7 @@ handle_pasv_response(const guchar *line, int linelen, packet_info *pinfo) */ break; } - + /* * See if we have six numbers. */ @@ -196,7 +196,7 @@ handle_pasv_response(const guchar *line, int linelen, packet_info *pinfo) } g_free(args); -} +} static void dissect_ftp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) @@ -240,7 +240,7 @@ dissect_ftp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) is_request ? "Request" : "Response", format_text(line, linelen)); } - + if (tree) { ti = proto_tree_add_item(tree, proto_ftp, tvb, offset, -1, FALSE); |