Oops, forgot to get rid of the "open_cap_file()" in "load_cap_file()"

when I turned the latter into "read_cap_file()".

svn path=/trunk/; revision=493
This commit is contained in:
Guy Harris 1999-08-15 00:55:22 +00:00
parent ea6a522b28
commit 8042652058
1 changed files with 1 additions and 6 deletions

7
file.c
View File

@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
* $Id: file.c,v 1.68 1999/08/15 00:26:09 guy Exp $
* $Id: file.c,v 1.69 1999/08/15 00:55:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -216,7 +216,6 @@ read_cap_file(char *fname, char *rfilter, capture_file *cf) {
gchar *err_fmt = " Error: Could not load '%s'";
gint timeout;
size_t msg_len;
int err;
if ((name_ptr = (gchar *) strrchr(fname, '/')) == NULL)
name_ptr = fname;
@ -232,10 +231,6 @@ read_cap_file(char *fname, char *rfilter, capture_file *cf) {
}
}
err = open_cap_file(fname, cf);
if (err != 0)
goto fail;
load_msg = g_malloc(strlen(name_ptr) + strlen(load_fmt) + 2);
sprintf(load_msg, load_fmt, name_ptr);
gtk_statusbar_push(GTK_STATUSBAR(info_bar), file_ctx, load_msg);