diff options
author | Luke Leighton <lkcl@samba.org> | 1997-11-07 03:37:18 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-11-07 03:37:18 +0000 |
commit | 029904995d27c4e765abf9334df34c399a535bea (patch) | |
tree | 449364c775b39967aa74a6a1dc62ce993a31fc26 /source3 | |
parent | b9c6add64536e855156a00e32e5288486114e66e (diff) | |
download | samba-029904995d27c4e765abf9334df34c399a535bea.tar.gz samba-029904995d27c4e765abf9334df34c399a535bea.tar.bz2 samba-029904995d27c4e765abf9334df34c399a535bea.zip |
local time discrepancies between the date on my computer and the date on
chris' computer (probably about four minutes) meant that chris' commits
didn't get downloaded when i did a cvs update.
therefore, i did a cvs update; make proto; cvs commit, and still got problems.
so, five minutes later, i do a cvs update, and _then_ chris' server.c and
mangle.c mods get downloaded, and i have to do another make proto.
this particular problem has hit us *really* badly in the past, because i
was taking files home (onto a portable that i hadn't reset the time on
since i went to the states) and then recopying them back onto the computer
here. if i do this, i do a touch *.c *.h; cvs -t update. *then* a cvs commit.
(This used to be commit edb9c52948159baa48d9decd253a401737bd5363)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 45a9202100..d3d905481f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -390,9 +390,9 @@ struct share_ops *locking_slow_init(int ronly); int str_checksum(char *s); BOOL is_8_3(char *fname, BOOL check_case); -void create_mangled_stack(int size); +void reset_mangled_stack( int size ); BOOL check_mangled_stack(char *s); -BOOL is_mangled(char *s); +BOOL is_mangled( char *s ); void mangle_name_83(char *s); BOOL name_map_mangle(char *OutName,BOOL need83,int snum); |