]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
correct typo in utime stub
authorGuido van Rossum <guido@python.org>
Tue, 7 Feb 1995 15:39:29 +0000 (15:39 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 7 Feb 1995 15:39:29 +0000 (15:39 +0000)
Modules/posixmodule.c

index 7f20a8fc72b8e9cd597645d044591275d159b840..0e4331ba9a724f0fd6ffeb4c4d1540858ac2152b 100644 (file)
@@ -562,7 +562,7 @@ posix_utime(self, args)
        if (!getargs(args, "(s(ll))", &path, &atime, &mtime))
                return NULL;
        ATIME = atime;
-       MTIME = utime;
+       MTIME = mtime;
        BGN_SAVE
        res = utime(path, UTIME_ARG);
        END_SAVE