aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
diff options
context:
space:
mode:
authorGravatar Claes Nästén <me@pekdon.net>2007-08-22 18:00:52 +1000
committerGravatar Claes Nästén <me@pekdon.net>2007-08-22 18:00:52 +1000
commitc2c4b2417441475f45aa970f13879846bb32c7bf (patch)
tree063acc7c5a6d7ce5eb12b297069722cd51664acd /builtin.c
parent74a270ea327129b489410900851a88d1e5a4084d (diff)
Fix issue in error handling, reported to and fixed by Axel Liljencrantz. Change val[0] and body[0] in env universal to val[1] and body[1] to support compilation with Sun Studio. Change default prompt to use pekdon instead of whoami as it does not exist under Solaris.
darcs-hash:20070822080052-cac88-326332f0df7d17ddca4a4496c93728a47f19bba5.gz
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin.c b/builtin.c
index 0aff1d7e..2dbb3be2 100644
--- a/builtin.c
+++ b/builtin.c
@@ -2526,9 +2526,9 @@ static int builtin_source( wchar_t ** argv )
if( res )
{
sb_printf( sb_err,
- _( L"%ls: Error while reading file '%ls'\n" ),
- argv[0],
- argv[1]?argv[1]:L"<stdin>" );
+ _( L"%ls: Error while reading file '%ls'\n" ),
+ argv[0],
+ argv[1] );
}
/*