diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 02:26:18 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 02:26:18 +0200 |
commit | 1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e (patch) | |
tree | dc2074d60a5f0cf1eca3236e02a95782613b1533 /source3/rpc_server | |
parent | 7e5bbe806958ea8176e4c8494e3b3f79570635da (diff) | |
download | samba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.tar.gz samba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.tar.bz2 samba-1f3e4f39c5219b8ca3564e0c2eb685d9e7fdb13e.zip |
Use GUID_string rather than smb_uuid_string().
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_spoolss_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index 52cb02b109..af9246c49f 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -4373,7 +4373,7 @@ static bool construct_printer_info_7(Printer_entry *print_hnd, PRINTER_INFO_7 *p if (is_printer_published(print_hnd, snum, &guid)) { if (asprintf(&guid_str, "{%s}", - smb_uuid_string(talloc_tos(), guid)) == -1) { + GUID_string(talloc_tos(), &guid)) == -1) { return false; } strupper_m(guid_str); |