]> sourceware.org Git - systemtap.git/commitdiff
2006-02-14 Mark McLoughlin <markmc@redhat.com>
authormarkmc <markmc>
Tue, 14 Feb 2006 13:07:04 +0000 (13:07 +0000)
committermarkmc <markmc>
Tue, 14 Feb 2006 13:07:04 +0000 (13:07 +0000)
        * aux_syscalls.stp: (_sys_open_flag_str): s/O_NDCTTY/O_NOCTTY/

tapset/ChangeLog
tapset/aux_syscalls.stp

index cea4f34890185653b9ac54b8d61dd23fc7fc46de..41f84b16714f604eee579266c2452507f0cfb355 100644 (file)
@@ -1,3 +1,7 @@
+2006-02-14  Mark McLoughlin  <markmc@redhat.com>
+
+       * aux_syscalls.stp: (_sys_open_flag_str): s/O_NDCTTY/O_NOCTTY/
+
 2006-02-14  Martin Hunt  <hunt@redhat.com>
 
        * aux_syscalls.stp (_struct_timeval_u): New function.
index 5f29b8caf06d906c2ab74ea579ca9fdce412873c..939ec5a95d78cda4b6304e71be44e5141cd0ea33 100644 (file)
@@ -493,7 +493,7 @@ function _sys_open_flag_str(f) {
    if(f & 2048) bs="O_NONBLOCK|".bs
    if(f & 1024) bs="O_APPEND|".bs
    if(f & 512)  bs="O_TRUNC|".bs
-   if(f & 256)  bs="O_NDCTTY|".bs
+   if(f & 256)  bs="O_NOCTTY|".bs
    if(f & 128)  bs="O_EXCL|".bs
    if(f & 64)   bs="O_CREAT|".bs
    if((f & 3) == 2) bs="O_RDWR|".bs
This page took 0.030682 seconds and 5 git commands to generate.