[Linux-decnet-commit] CVS: dnprogs/dndir dndir.cc,1.6,1.7
Brought to you by:
chrissie_c,
ph3-der-loewe
From: Patrick C. <pa...@us...> - 2006-01-26 13:32:55
|
Update of /cvsroot/linux-decnet/dnprogs/dndir In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8697 Modified Files: dndir.cc Log Message: Fix display bugs when file is locked. Index: dndir.cc =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dndir/dndir.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** dndir.cc 1 Sep 2005 08:56:01 -0000 1.6 --- dndir.cc 26 Jan 2006 13:32:45 -0000 1.7 *************** *** 377,381 **** if (sm->get_code() == 0x4030) { ! printf("%-*s ", filename_width, name); if (single_column) { --- 377,381 ---- if (sm->get_code() == 0x4030) { ! printf("%-*s", filename_width, name); if (single_column) { *************** *** 390,393 **** --- 390,394 ---- } } + name_pending = false; dap_contran_message cm; *************** *** 520,524 **** if (sm->get_code() == 0x4030) { ! printf("%s File current locked by another user\n", name_msg->get_namespec()); --- 521,525 ---- if (sm->get_code() == 0x4030) { ! printf("%s File current locked by another user\n\n", name_msg->get_namespec()); *************** *** 537,540 **** --- 538,542 ---- return false; } + name_pending = false; } break; |