diff options
author | eadler <eadler@FreeBSD.org> | 2012-12-05 13:56:39 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-12-05 13:56:39 +0000 |
commit | 6dd12d609dc178d716b9e83a28132edaefc99c45 (patch) | |
tree | b05f6bbc95a6d97d9a60d63fcc670ef770399752 /share/skel | |
parent | e955c7ba8bdbada4af6f9b5f789baac802844ebf (diff) | |
download | FreeBSD-src-6dd12d609dc178d716b9e83a28132edaefc99c45.zip FreeBSD-src-6dd12d609dc178d716b9e83a28132edaefc99c45.tar.gz |
Remove hack to emulate effective uid and just use the EUID's name in the
first place. I was unaware of this option when originally committing
this change.
Submitted by: gcooper
Approved by: cperciva
MFC after: 3 days
Diffstat (limited to 'share/skel')
-rw-r--r-- | share/skel/dot.cshrc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/share/skel/dot.cshrc b/share/skel/dot.cshrc index 5ce3e36..3e94371 100644 --- a/share/skel/dot.cshrc +++ b/share/skel/dot.cshrc @@ -23,10 +23,7 @@ setenv BLOCKSIZE K if ($?prompt) then # An interactive shell -- set some stuff up - if ($uid == 0) then - set user = root - endif - set prompt = "%n@%m:%~ %# " + set prompt = "%N@%m:%~ %# " set promptchars = "%#" set filec |