summaryrefslogtreecommitdiff
path: root/source3/lib/eventlog
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-01-23 13:18:00 +0100
committerVolker Lendecke <vl@samba.org>2010-01-23 14:35:37 +0100
commit9fcbe3a65c6f30754f3f705c3e0b4a4ae150c679 (patch)
tree2c5d01380a271c5b368fa87c21d0c1b7a574fbec /source3/lib/eventlog
parent3e1a1616ec2b51993e988e43ecf0c0f78b1607e5 (diff)
downloadsamba-9fcbe3a65c6f30754f3f705c3e0b4a4ae150c679.tar.gz
samba-9fcbe3a65c6f30754f3f705c3e0b4a4ae150c679.tar.bz2
samba-9fcbe3a65c6f30754f3f705c3e0b4a4ae150c679.zip
s3: Remove some pointless uses of string_sid_talloc
Diffstat (limited to 'source3/lib/eventlog')
-rw-r--r--source3/lib/eventlog/eventlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/eventlog/eventlog.c b/source3/lib/eventlog/eventlog.c
index 42b2a06ce3..1c0dba980d 100644
--- a/source3/lib/eventlog/eventlog.c
+++ b/source3/lib/eventlog/eventlog.c
@@ -940,7 +940,7 @@ NTSTATUS evlog_tdb_entry_to_evt_entry(TALLOC_CTX *mem_ctx,
return NT_STATUS_INVALID_SID;
}
if (len > 0) {
- e->UserSid = *string_sid_talloc(mem_ctx, sid_str);
+ string_to_sid(&e->UserSid, sid_str);
}
}