diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-15 21:53:26 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-15 22:09:36 +0100 |
commit | 7b01537679d4d4f1408634fe63c64c144f9d9519 (patch) | |
tree | 0a2191050b3ca77f10c837ec318b8db31f131850 /source3/utils/net_lookup.c | |
parent | 54ae9dfcbce727ae3107f21eee68762502acda60 (diff) | |
download | samba-7b01537679d4d4f1408634fe63c64c144f9d9519.tar.gz |
Replace sid_string_static with sid_string_tos
In utils/ I was a bit lazy...
(This used to be commit 60e830b0f4571bd5d9039f2edd199534f2a4c341)
Diffstat (limited to 'source3/utils/net_lookup.c')
-rw-r--r-- | source3/utils/net_lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net_lookup.c b/source3/utils/net_lookup.c index 9060f8366a4..20298faa299 100644 --- a/source3/utils/net_lookup.c +++ b/source3/utils/net_lookup.c @@ -328,7 +328,7 @@ static int net_lookup_name(int argc, const char **argv) return -1; } - d_printf("%s %d (%s) %s\\%s\n", sid_string_static(&sid), + d_printf("%s %d (%s) %s\\%s\n", sid_string_tos(&sid), type, sid_type_lookup(type), dom, name); return 0; } @@ -355,7 +355,7 @@ static int net_lookup_sid(int argc, const char **argv) return -1; } - d_printf("%s %d (%s) %s\\%s\n", sid_string_static(&sid), + d_printf("%s %d (%s) %s\\%s\n", sid_string_tos(&sid), type, sid_type_lookup(type), dom, name); return 0; } |