X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.c;h=642947cbc5e8e30c7da153b83400a3fe824685e9;hb=10ac8c99bd7a4155216e9bc3e48dd30e63b11642;hp=272e555bf89965c3ebd282531781d0c50f4f244a;hpb=f11afbea340755c9d13a668b56b7041b988a10fb;p=pspp-builds.git diff --git a/src/data/file-name.c b/src/data/file-name.c index 272e555b..642947cb 100644 --- a/src/data/file-name.c +++ b/src/data/file-name.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2007, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -485,7 +485,14 @@ default_output_path (void) if (home_dir == NULL) home_dir = "c:/users/default"; /* poor default */ - path = xasprintf ("%s%c", home_dir, '/'); + /* Copy home_dir into path. Add a slash at the end but + only if there isn't already one there, because Windows + treats // specially. */ + if (home_dir[0] == '\0' + || strchr ("/\\", home_dir[strlen (home_dir) - 1]) != NULL) + path = xasprintf ("%s%c", home_dir, '/'); + else + path = xstrdup (home_dir); for(i = 0; i < strlen (path); i++)