summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
commit96a24cc79f7a32851cc2005603e32633389043a3 (patch)
tree62c91332176b091409c8f06937bbce734155981e /file.h
parenta6e56df8b683bb696655c331f64f22abc8f36af4 (diff)
downloadwireshark-96a24cc79f7a32851cc2005603e32633389043a3.tar.gz
Fix spelling/typos found using a list of commonly misspelled words.
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
Diffstat (limited to 'file.h')
-rw-r--r--file.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/file.h b/file.h
index 34685caa54..382b2a18f4 100644
--- a/file.h
+++ b/file.h
@@ -169,7 +169,7 @@ gboolean cf_read_frame(capture_file *cf, frame_data *fdata);
* @param cf the capture file to be read from
* @param fname the filename to be read from
* @param is_tempfile is this a temporary file?
- * @param err the error code, if an error had occured
+ * @param err the error code, if an error had occurred
* @return one of cf_status_t
*/
cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
@@ -179,7 +179,7 @@ cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempf
*
* @param cf the capture file to be read from
* @param to_read the number of packets to read
- * @param err the error code, if an error had occured
+ * @param err the error code, if an error had occurred
* @return one of cf_read_status_t
*/
cf_read_status_t cf_continue_tail(capture_file *cf, volatile int to_read, int *err);
@@ -195,7 +195,7 @@ void cf_fake_continue_tail(capture_file *cf);
* Finish reading from "end" of a capture file.
*
* @param cf the capture file to be read from
- * @param err the error code, if an error had occured
+ * @param err the error code, if an error had occurred
* @return one of cf_read_status_t
*/
cf_read_status_t cf_finish_tail(capture_file *cf, int *err);
@@ -318,7 +318,7 @@ void cf_set_drops_known(capture_file *cf, gboolean drops_known);
* Set the number of packet drops while capturing.
*
* @param cf the capture file
- * @param drops the number of packet drops occured while capturing
+ * @param drops the number of packet drops occurred while capturing
*/
void cf_set_drops(capture_file *cf, guint32 drops);
@@ -334,7 +334,7 @@ gboolean cf_get_drops_known(capture_file *cf);
* Get the number of packet drops while capturing.
*
* @param cf the capture file
- * @return the number of packet drops occured while capturing
+ * @return the number of packet drops occurred while capturing
*/
guint32 cf_get_drops(capture_file *cf);