diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-19 19:50:36 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-19 19:50:36 +0200 |
commit | 8e02cb17fe5e9931532b0ecf0b61825f500fd719 (patch) | |
tree | 31f9c1d4ac48b369ab65f9a9a12278dbc1bb9803 /source3/librpc | |
parent | bdd815e554fba73804ec69043ea2e4fb119f75fe (diff) | |
download | samba-8e02cb17fe5e9931532b0ecf0b61825f500fd719.tar.gz samba-8e02cb17fe5e9931532b0ecf0b61825f500fd719.tar.bz2 samba-8e02cb17fe5e9931532b0ecf0b61825f500fd719.zip |
Ooops, GUID_equal was already around :-)
(This used to be commit 9a0bc277f23831124d049301bc7009a285d91a11)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/ndr/ndr_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/librpc/ndr/ndr_misc.c b/source3/librpc/ndr/ndr_misc.c index f1468166ff..e86842527c 100644 --- a/source3/librpc/ndr/ndr_misc.c +++ b/source3/librpc/ndr/ndr_misc.c @@ -46,7 +46,7 @@ void ndr_print_GUID(struct ndr_print *ndr, const char *name, const struct GUID * bool ndr_syntax_id_equal(const struct ndr_syntax_id *i1, const struct ndr_syntax_id *i2) { - return guid_equal(&i1->uuid, &i2->uuid) + return GUID_equal(&i1->uuid, &i2->uuid) && (i1->if_version == i2->if_version); } |