diff options
author | Tim Potter <tpot@samba.org> | 2003-06-13 04:35:53 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-06-13 04:35:53 +0000 |
commit | 0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b (patch) | |
tree | 7ccac6f82746bf5410dbe25f69aebfe949995cf4 /source3/rpc_server | |
parent | 61742d1117e12cbb131f9c55ab0a9acbcc1f4d3a (diff) | |
download | samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.tar.gz samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.tar.bz2 samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.zip |
Rename some uuid functions so as not to conflict with system
versions. Fixes bug #154.
(This used to be commit 986eae40f7669d15dc75aed340e628aa7efafddc)
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 92b1481ab8..217d2cbaea 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -4330,7 +4330,7 @@ static BOOL construct_printer_info_7(Printer_entry *print_hnd, PRINTER_INFO_7 *p GUID guid; if (is_printer_published(print_hnd, snum, &guid)) { - asprintf(&guid_str, "{%s}", uuid_string_static(guid)); + asprintf(&guid_str, "{%s}", smb_uuid_string_static(guid)); strupper(guid_str); init_unistr(&printer->guid, guid_str); printer->action = SPOOL_DS_PUBLISH; |