diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-09-15 22:48:42 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-09-15 22:48:42 +0000 |
commit | 14509164fc753f181512bd8b09eabbc8409b7199 (patch) | |
tree | ee4ebd56abfcb122c6165e74d451836e2e0a43b4 /tethereal.c | |
parent | 1332b99a2ab12703f6b561c4afb4a5a9ff81923d (diff) | |
download | wireshark-14509164fc753f181512bd8b09eabbc8409b7199.tar.gz wireshark-14509164fc753f181512bd8b09eabbc8409b7199.tar.bz2 wireshark-14509164fc753f181512bd8b09eabbc8409b7199.zip |
Rename various capture file routines to have names starting with "cf_".
svn path=/trunk/; revision=8479
Diffstat (limited to 'tethereal.c')
-rw-r--r-- | tethereal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tethereal.c b/tethereal.c index 3ca726f1cc..60b19ce93e 100644 --- a/tethereal.c +++ b/tethereal.c @@ -1,6 +1,6 @@ /* tethereal.c * - * $Id: tethereal.c,v 1.196 2003/09/10 22:23:58 guy Exp $ + * $Id: tethereal.c,v 1.197 2003/09/15 22:48:41 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1344,7 +1344,7 @@ main(int argc, char *argv[]) } cfile.rfcode = rfcode; if (cf_name) { - err = open_cap_file(cf_name, FALSE, &cfile); + err = cf_open(cf_name, FALSE, &cfile); if (err != 0) { epan_cleanup(); exit(2); @@ -2664,7 +2664,7 @@ file_open_error_message(int err, gboolean for_writing, int file_type) } int -open_cap_file(char *fname, gboolean is_tempfile, capture_file *cf) +cf_open(char *fname, gboolean is_tempfile, capture_file *cf) { wtap *wth; int err; |