diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-05 02:01:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:18 -0500 |
commit | 58d9adf409ac11c5d8fd62cbb1bca9974cfbeb7d (patch) | |
tree | 635adb720a577497e3d8470e8de9ae7d15820752 /source4/gtk | |
parent | d9ab65a8b40b540f163b454c6d543f090759cdae (diff) | |
download | samba-58d9adf409ac11c5d8fd62cbb1bca9974cfbeb7d.tar.gz samba-58d9adf409ac11c5d8fd62cbb1bca9974cfbeb7d.tar.bz2 samba-58d9adf409ac11c5d8fd62cbb1bca9974cfbeb7d.zip |
r4526: - much simpler (and more accurate!) ndr_size_*() code generation. It
is less efficient, but I really doubt that matters.
- use enum in epmapper.idl for protocol type
- added support for "enum8bit" flag, used in epmapper.idl
(This used to be commit 1a24a50384b7f588844cd012f1218ca242ca4507)
Diffstat (limited to 'source4/gtk')
-rw-r--r-- | source4/gtk/tools/gepdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/gtk/tools/gepdump.c b/source4/gtk/tools/gepdump.c index ce606a6a6e..06e8c309cf 100644 --- a/source4/gtk/tools/gepdump.c +++ b/source4/gtk/tools/gepdump.c @@ -55,7 +55,7 @@ static void on_about1_activate (GtkMenuItem *menuitem, gpointer user_data) gtk_widget_destroy(GTK_WIDGET(aboutwin)); } -static const char *get_protocol_name(enum epm_protocols protocol) +static const char *get_protocol_name(enum epm_protocol protocol) { switch (protocol) { case EPM_PROTOCOL_UUID: return "UUID"; |