From 0bf7463c6f85a1e01837c1f954703a9c042edc88 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Sun, 1 Jul 2007 17:59:46 +0000 Subject: [PATCH] This one was nice ... and it didn't even trigger a compile warning. Update the copyright. This commit was SVN r15256. --- opal/util/path.c | 4 ++-- opal/util/path.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opal/util/path.c b/opal/util/path.c index 1256b099dc..d7486878b6 100644 --- a/opal/util/path.c +++ b/opal/util/path.c @@ -2,7 +2,7 @@ * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. - * Copyright (c) 2004-2005 The University of Tennessee and The University + * Copyright (c) 2004-2007 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, @@ -36,7 +36,7 @@ bool opal_path_is_absolute( const char *path ) #if defined(__WINDOWS__) /* On Windows an absolute path always start with [a-z]:\ or with \\ */ if( (isalpha(path[0]) && (':' == path[1])) || - ('\' == path[0]) && ('\' == path[1]) ) return true; + ('\\' == path[0]) && ('\\' == path[1]) ) return true; #else if( OPAL_PATH_SEP[0] == *path ) { return true; diff --git a/opal/util/path.h b/opal/util/path.h index a62a91852b..e484e41f10 100644 --- a/opal/util/path.h +++ b/opal/util/path.h @@ -2,7 +2,7 @@ * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. - * Copyright (c) 2004-2005 The University of Tennessee and The University + * Copyright (c) 2004-2007 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,