summaryrefslogtreecommitdiff
path: root/lib9
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2009-04-03 13:18:03 +0000
committerCharles.Forsyth <devnull@localhost>2009-04-03 13:18:03 +0000
commit6257024afa02f4a61f05ebd05f9b067974b60f4a (patch)
treeae50c126a4be96a8a88e491589f6481ad2b6cfb8 /lib9
parent96d99b9d5842a29c2374d9cdf300985d2cb1ca20 (diff)
20090403-1415
Diffstat (limited to 'lib9')
-rw-r--r--lib9/getuser-Nt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib9/getuser-Nt.c b/lib9/getuser-Nt.c
index 3d478f8a..afe88cf1 100644
--- a/lib9/getuser-Nt.c
+++ b/lib9/getuser-Nt.c
@@ -3,7 +3,6 @@
char*
getuser(void)
{
- static char *user = 0;
- user = "unknown";
- return user;
+ /* could do better, but result isn't really used */
+ return "unknown";
}