From 6760e69a68571e01ee57b959193a56278962a23c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 4 Oct 1998 09:42:51 +0000 Subject: added support for printing via smbwrapper You can print using "cp filename /smb/SERVER/PRINTER/jobname" You can list the current printqueue using ls (This used to be commit 080fb61b69620e26e8122705383dc2bd0468a519) --- source3/lib/util.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 313021abb8..ccbaebf4ea 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -4044,7 +4044,6 @@ BOOL process_exists(int pid) /******************************************************************* turn a uid into a user name ********************************************************************/ - char *uidtoname(uid_t uid) { static char name[40]; @@ -4054,6 +4053,7 @@ char *uidtoname(uid_t uid) return(name); } + /******************************************************************* turn a gid into a group name ********************************************************************/ @@ -4067,6 +4067,16 @@ char *gidtoname(gid_t gid) return(name); } +/******************************************************************* +turn a user name into a uid +********************************************************************/ +uid_t nametouid(const char *name) +{ + struct passwd *pass = getpwnam(name); + if (pass) return(pass->pw_uid); + return (uid_t)-1; +} + /******************************************************************* something really nasty happened - panic! ********************************************************************/ -- cgit