Move packet-rsync.c into alphabetically correct posision in Makefile.*

Remove comma after last element in enum.

svn path=/trunk/; revision=7176
This commit is contained in:
Jörg Mayer 2003-02-20 12:04:11 +00:00
parent dd22e794c3
commit 13c4434e9f
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.554 2003/02/18 21:47:56 guy Exp $
# $Id: Makefile.am,v 1.555 2003/02/20 12:04:11 jmayer Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -318,9 +318,9 @@ DISSECTOR_SRC = \
packet-rpl.c \
packet-rquota.c \
packet-rsh.c \
packet-rsync.c \
packet-rstat.c \
packet-rsvp.c \
packet-rsync.c \
packet-rtcp.c \
packet-rtp.c \
packet-rtsp.c \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.280 2003/02/18 21:47:56 guy Exp $
# $Id: Makefile.nmake,v 1.281 2003/02/20 12:04:11 jmayer Exp $
include config.nmake
include <win32.mak>
@ -261,9 +261,9 @@ DISSECTOR_SRC = \
packet-rpl.c \
packet-rquota.c \
packet-rsh.c \
packet-rsync.c \
packet-rstat.c \
packet-rsvp.c \
packet-rsync.c \
packet-rtcp.c \
packet-rtp.c \
packet-rtsp.c \

View File

@ -3,7 +3,7 @@
* [ very rough, but mininally functional ]
* Copyright 2003, Brad Hards <bradh@frogmouth.net>
*
* $Id: packet-rsync.c,v 1.1 2003/02/18 21:47:56 guy Exp $
* $Id: packet-rsync.c,v 1.2 2003/02/20 12:04:11 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -50,7 +50,7 @@ typedef enum _rsync_state {
RSYNC_SERV_RESPONSE = 4,
RSYNC_COMMAND = 5,
RSYNC_SERV_MOTD = 6,
RSYNC_DATA = 7,
RSYNC_DATA = 7
} rsync_state_t;
static gboolean rsync_desegment = TRUE;