diff options
author | Guido van Rossum <guido@python.org> | 1992-12-15 21:44:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-12-15 21:44:13 (GMT) |
commit | 63ae96e3d7a1bf545bdf2c4484aa1cb065e920ea (patch) | |
tree | 7d881b5c877e7160146edd6996721666412ab0a1 /Demo/rpc | |
parent | 38625352bb50002614c160039d09ea5e3d9cc279 (diff) | |
download | cpython-63ae96e3d7a1bf545bdf2c4484aa1cb065e920ea.zip cpython-63ae96e3d7a1bf545bdf2c4484aa1cb065e920ea.tar.gz cpython-63ae96e3d7a1bf545bdf2c4484aa1cb065e920ea.tar.bz2 |
Fix spelling of Umnt.
Diffstat (limited to 'Demo/rpc')
-rw-r--r-- | Demo/rpc/mountclient.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/rpc/mountclient.py b/Demo/rpc/mountclient.py index a0de94b..1015105 100644 --- a/Demo/rpc/mountclient.py +++ b/Demo/rpc/mountclient.py @@ -79,11 +79,11 @@ class PartialMountClient: # This function is called to gobble up a suitable # authentication object for a call to procedure 'proc'. - # (Experiments suggest that for Mnt/Unmnt, Unix authentication + # (Experiments suggest that for Mnt/Umnt, Unix authentication # is necessary, while the other calls require no # authentication.) def mkcred(self, proc): - if proc not in (1, 3, 4): # not Mnt/Unmnt/Unmntall + if proc not in (1, 3, 4): # not Mnt/Umnt/Umntall return rpc.AUTH_NULL, '' if self.cred == None: self.cred = rpc.AUTH_UNIX, rpc.make_auth_unix_default() |