Opened 16 years ago

Closed 16 years ago

#2183 closed bug (fixed)

Cannot write to symlinked file

Reported by: kaliber Owned by: axeld
Priority: normal Milestone: R1
Component: - General Version: R1/pre-alpha1
Keywords: Cc:
Blocked By: Blocking:
Platform: All

Description

Example: cat cannot write to f2.txt but it should vim f2.txt and then try to save

~/bug> echo "dupa" > f1.txt
~/bug> ln -s f1.txt f2.txt
~/bug> ls -l
total 1
-rw-r--r-- 1 baron users 5 Apr 29 19:55 f1.txt
lrwxrwxrwx 1 baron users 6 Apr 29 19:55 f2.txt -> f1.txt
~/bug> echo " blada" >> f1.txt 
~/bug> cat f1.txt 
dupa
 blada
~/bug> echo "something wrong is here" > f2.txt 
~/bug> cat f2.txt 
dupa
 blada
~/bug> echo "OK" >> f1.txt
~/bug> cat f2.txt 
dupa
 blada
OK

Change History (1)

comment:1 by bonefish, 16 years ago

Resolution: fixed
Status: newclosed

Fixed in hrev25271.

Note: See TracTickets for help on using tickets.