diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-05 05:03:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:47 -0500 |
commit | 7011c716003948a36fa7d4fd44acdfdd405d0ee2 (patch) | |
tree | 00bb15d186164cf2cfacd5c87b515db5aca8ff6a /source4/librpc/idl | |
parent | c5fbb6f23c2d399c7510bc552cdb1a27b1ef66a8 (diff) | |
download | samba-7011c716003948a36fa7d4fd44acdfdd405d0ee2.tar.gz samba-7011c716003948a36fa7d4fd44acdfdd405d0ee2.tar.bz2 samba-7011c716003948a36fa7d4fd44acdfdd405d0ee2.zip |
r1657: fixed the string types of two strings in svcctl.
we still need to fix the handling of subcontexts
(This used to be commit 589c5e394ca1c7ef29f2a0f755a5f932ce60dde5)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/svcctl.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/svcctl.idl b/source4/librpc/idl/svcctl.idl index 6337094790..2048fea433 100644 --- a/source4/librpc/idl/svcctl.idl +++ b/source4/librpc/idl/svcctl.idl @@ -26,8 +26,8 @@ } SERVICE_STATUS; typedef struct { - unistr *service_name; - unistr *display_name; + [relative] astring *service_name; + [relative] astring *display_name; SERVICE_STATUS status; } ENUM_SERVICE_STATUS; |