blob: 55fb391ef10cbc254e0dae546154025c0de707fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Description: show ~/.face if available
Author: Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org>
--- a/finger/lprint.c
+++ b/finger/lprint.c
@@ -62,6 +62,7 @@
#define _PATH_PLAN ".plan"
#define _PATH_PROJECT ".project"
#define _PATH_PGPKEY ".pgpkey"
+#define _PATH_FACE ".face"
void
lflag_print(void)
@@ -99,6 +100,8 @@
* shell
* office, office phone, home phone if available
*/
+ show_text(pn->dir, _PATH_FACE, "~~~~~~~~~~~~~~~~~~~~\n");
+ xprintf("~~~~~~~~~~~~~~~~~~~~\n");
xprintf("Login: %-15s\t\t\tName: %s\nDirectory: %-25s",
pn->name, pn->realname ? pn->realname : "", pn->dir);
xprintf("\tShell: %-s\n", *pn->shell ? pn->shell : _PATH_BSHELL);
|