aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h21
1 files changed, 17 insertions, 4 deletions
diff --git a/file.h b/file.h
index 37449551eb..296c0087ac 100644
--- a/file.h
+++ b/file.h
@@ -42,7 +42,7 @@ typedef enum {
/** Return values from functions that read capture files. */
typedef enum {
- CF_READ_OK, /**< operation succeeded */
+ CF_READ_OK, /**< operation succeeded */
CF_READ_ERROR, /**< operation got an error (function may provide err with details) */
CF_READ_ABORTED /**< operation aborted by user */
} cf_read_status_t;
@@ -56,9 +56,9 @@ typedef enum {
/** Return values from functions that print sets of packets. */
typedef enum {
- CF_PRINT_OK, /**< print operation succeeded */
- CF_PRINT_OPEN_ERROR, /**< print operation failed while opening printer */
- CF_PRINT_WRITE_ERROR /**< print operation failed while writing to the printer */
+ CF_PRINT_OK, /**< print operation succeeded */
+ CF_PRINT_OPEN_ERROR, /**< print operation failed while opening printer */
+ CF_PRINT_WRITE_ERROR /**< print operation failed while writing to the printer */
} cf_print_status_t;
typedef enum {
@@ -682,4 +682,17 @@ void read_keytab_file(const char *);
}
#endif /* __cplusplus */
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */
+
#endif /* file.h */