Mercurial > pidgin.yaz
annotate src/protocols/zephyr/ZGetSender.c @ 9933:cee849d17167
[gaim-migrate @ 10825]
Another patch from Dave West. This makes the file transfer message
show up when someone sends you an AIM file transfer. It also attempts
to decode the message to UTF-8. The chat invitation messages also
benefit from this attempted conversion.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 02 Sep 2004 03:46:53 +0000 |
parents | 43d6c08d7e96 |
children | eb8ccdd6f5f2 |
rev | line source |
---|---|
2086 | 1 /* This file is part of the Project Athena Zephyr Notification System. |
2 * It contains source for the ZGetSender.c function. | |
3 * | |
4 * Created by: Robert French | |
5 * | |
6 * $Source$ | |
8792
43d6c08d7e96
[gaim-migrate @ 9554]
Christian Hammond <chipx86@chipx86.com>
parents:
2086
diff
changeset
|
7 * $Author: chipx86 $ |
2086 | 8 * |
9 * Copyright (c) 1987, 1991 by the Massachusetts Institute of Technology. | |
10 * For copying and distribution information, see the file | |
11 * "mit-copyright.h". | |
12 */ | |
13 /* $Header$ */ | |
14 | |
8792
43d6c08d7e96
[gaim-migrate @ 9554]
Christian Hammond <chipx86@chipx86.com>
parents:
2086
diff
changeset
|
15 #include "internal.h" |
2086 | 16 |
17 #ifndef lint | |
18 static const char rcsid_ZGetSender_c[] = | |
8792
43d6c08d7e96
[gaim-migrate @ 9554]
Christian Hammond <chipx86@chipx86.com>
parents:
2086
diff
changeset
|
19 "$Id: ZGetSender.c 9554 2004-04-24 09:02:28Z chipx86 $"; |
2086 | 20 #endif |
21 | |
22 #include <pwd.h> | |
23 | |
24 char *ZGetSender() | |
25 { | |
26 struct passwd *pw; | |
27 #ifdef ZEPHYR_USES_KERBEROS | |
28 char pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ]; | |
29 static char sender[ANAME_SZ+INST_SZ+REALM_SZ+3] = ""; | |
30 #else | |
31 static char sender[128] = ""; | |
32 #endif | |
33 | |
34 /* Return it if already cached */ | |
35 if (*sender) | |
36 return (sender); | |
37 | |
38 #ifdef ZEPHYR_USES_KERBEROS | |
39 if (krb_get_tf_fullname((char *)TKT_FILE, pname, pinst, prealm) == KSUCCESS) | |
40 { | |
41 (void) sprintf(sender, "%s%s%s@%s", pname, (pinst[0]?".":""), | |
42 pinst, prealm); | |
43 return (sender); | |
44 } | |
45 #endif | |
46 | |
47 /* XXX a uid_t is a u_short (now), but getpwuid | |
48 * wants an int. AARGH! */ | |
49 pw = getpwuid((int) getuid()); | |
50 if (!pw) | |
51 return ("unknown"); | |
52 (void) sprintf(sender, "%s@%s", pw->pw_name, __Zephyr_realm); | |
53 return (sender); | |
54 } |