DCERPC: Fix DRIVER_INFO_7 defines in DCE/RPC spoolss dissector

Guenther

Change-Id: I54fc0668ea1146860beabed6628334ed4f369bf0
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-on: https://code.wireshark.org/review/35487
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Günther Deschner 2016-11-16 20:18:42 +01:00 committed by Anders Broman
parent 6094e9d392
commit c7f6591247
2 changed files with 7 additions and 9 deletions

View File

@ -2319,12 +2319,8 @@ static const value_string getprinter_action_vals[] = {
{ DS_PUBLISH, "Publish" },
{ DS_UNPUBLISH, "Unpublish" },
{ DS_UPDATE, "Update" },
/* Not sure what the constant values are here */
/* { DS_PENDING, "Pending" }, */
/* { DS_REPUBLISH, "Republish" }, */
{ DS_PENDING, "Pending" },
{ DS_REPUBLISH, "Republish" },
{ 0, NULL }
};

View File

@ -547,9 +547,11 @@
/* Printer info level 7 */
#define DS_PUBLISH 1
#define DS_UPDATE 2
#define DS_UNPUBLISH 3
#define DS_PUBLISH 0x00000001
#define DS_UPDATE 0x00000002
#define DS_UNPUBLISH 0x00000004
#define DS_REPUBLISH 0x00000008
#define DS_PENDING 0x80000000
/* SetJob command values */