diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-07-30 10:13:14 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-07-30 10:13:14 +0000 |
commit | 01d19fd31dcb2e728ce2c5289f13a03319f6f502 (patch) | |
tree | cd4920ca15aa482dfde184a8bec496b136ff559b /source3/client | |
parent | bf65e9a56b188f72bc072647e9a9d6d32af46fb0 (diff) | |
download | samba-01d19fd31dcb2e728ce2c5289f13a03319f6f502.tar.gz samba-01d19fd31dcb2e728ce2c5289f13a03319f6f502.tar.bz2 samba-01d19fd31dcb2e728ce2c5289f13a03319f6f502.zip |
Minor text mods, mostly checking that CVS still works
Dan
(This used to be commit 632bf0dab06bccd082a9fc64a62ff7c99982d2b6)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 84ff1b50c8..49804270e9 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -525,7 +525,7 @@ static int do_long_dir(char *inbuf,char *outbuf,char *Mask,int attribute,void (* loop_count++; if (loop_count > 200) { - DEBUG(0,("ERROR: Looping in FIND_NEXT??\n")); + DEBUG(0,("Error: Looping in FIND_NEXT??\n")); break; } @@ -4818,7 +4818,7 @@ err_code_struct hard_msgs[] = { {"ERRwrite",29,"Write fault."}, {"ERRread",30,"Read fault."}, {"ERRgeneral",31,"General failure."}, - {"ERRbadshare",32,"A open conflicts with an existing open."}, + {"ERRbadshare",32,"An open conflicts with an existing open."}, {"ERRlock",33,"A Lock request conflicted with an existing lock or specified an invalid mode, or an Unlock requested attempted to remove a lock held by another process."}, {"ERRwrongdisk",34,"The wrong disk was found in a drive."}, {"ERRFCBUnavail",35,"No FCBs are available to process request."}, @@ -4876,6 +4876,6 @@ char *smb_errstr(char *inbuf) return ret; } - sprintf(ret,"ERROR: Unknown error (%d,%d)",class,num); + sprintf(ret,"Error: Unknown error (%d,%d)",class,num); return(ret); } |