[commit][3128] oops. getpw?? => getwd

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit][3128] oops. getpw?? => getwd

commits-3
 
Revision: 3128
Author:   eliot
Date:     2014-11-10 10:15:29 -0800 (Mon, 10 Nov 2014)
Log Message:
-----------
oops. getpw?? => getwd

Modified Paths:
--------------
    branches/Cog/platforms/Mac OS/vm/sqMacMain.c
    branches/Cog/platforms/unix/vm/sqUnixMain.c

Property Changed:
----------------
    branches/Cog/platforms/Cross/vm/sqSCCSVersion.h


Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Mon Nov 10 10:11:51 PST 2014
   + Mon Nov 10 10:15:48 PST 2014

Modified: branches/Cog/platforms/Mac OS/vm/sqMacMain.c
===================================================================
--- branches/Cog/platforms/Mac OS/vm/sqMacMain.c 2014-11-10 18:12:05 UTC (rev 3127)
+++ branches/Cog/platforms/Mac OS/vm/sqMacMain.c 2014-11-10 18:15:29 UTC (rev 3128)
@@ -290,7 +290,7 @@
   char pwd[PATH_MAX+1];
 
  printf("blocking e.g. to allow attaching debugger\n");
- printf("pid: %d pwd: %s vm:%s\n", (int)getpid(), argVec[0], getpw(pwd));
+ printf("pid: %d pwd: %s vm:%s\n", (int)getpid(), argVec[0], getwd(pwd));
  while (1) {
  while_away_the_hours.tv_sec = 3600;
  nanosleep(&while_away_the_hours, 0);

Modified: branches/Cog/platforms/unix/vm/sqUnixMain.c
===================================================================
--- branches/Cog/platforms/unix/vm/sqUnixMain.c 2014-11-10 18:12:05 UTC (rev 3127)
+++ branches/Cog/platforms/unix/vm/sqUnixMain.c 2014-11-10 18:15:29 UTC (rev 3128)
@@ -912,7 +912,7 @@
   char pwd[MAXPATHLEN+1];
 
  printf("blocking e.g. to allow attaching debugger\n");
- printf("pid: %d pwd: %s vm:%s\n", (int)getpid(), argVec[0], getpw(pwd));
+ printf("pid: %d pwd: %s vm:%s\n", (int)getpid(), argVec[0], getwp(pwd));
  while (1) {
  while_away_the_hours.tv_sec = 3600;
  nanosleep(&while_away_the_hours, 0);