diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
commit | 84123931970a8a0f1af281e7351eadabba3c0908 (patch) | |
tree | 90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-rlogin.c | |
parent | b9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff) | |
download | wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.bz2 wireshark-84123931970a8a0f1af281e7351eadabba3c0908.zip |
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by
the routines to register fields.
svn path=/trunk/; revision=3561
Diffstat (limited to 'packet-rlogin.c')
-rw-r--r-- | packet-rlogin.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packet-rlogin.c b/packet-rlogin.c index 43b93591d2..e523eec16b 100644 --- a/packet-rlogin.c +++ b/packet-rlogin.c @@ -2,7 +2,7 @@ * Routines for unix rlogin packet dissection * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet-rlogin.c,v 1.15 2001/06/08 08:38:52 guy Exp $ + * $Id: packet-rlogin.c,v 1.16 2001/06/18 02:17:51 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -444,32 +444,32 @@ proto_register_rlogin( void){ { &hf_user_info, { "User Info", "rlogin.user_info", FT_NONE, BASE_NONE, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } }, { &hf_window_info, { "Window Info", "rlogin.window_size", FT_NONE, BASE_NONE, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } }, { &hf_window_info_rows, { "Rows", "rlogin.window_size.rows", FT_UINT16, BASE_DEC, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } }, { &hf_window_info_cols, { "Columns", "rlogin.window_size.cols", FT_UINT16, BASE_DEC, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } }, { &hf_window_info_x_pixels, { "X Pixels", "rlogin.window_size.x_pixels", FT_UINT16, BASE_DEC, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } }, { &hf_window_info_y_pixels, { "Y Pixels", "rlogin.window_size.y_pixels", FT_UINT16, BASE_DEC, - NULL, 0x0, "" + NULL, 0x0, "", HFILL } } }; |